Nvim and bashrc update

This commit is contained in:
Mahesh Asolkar 2024-03-30 14:28:12 -07:00
parent 4fd1cc8d31
commit 6e4ee2efd2
2 changed files with 5 additions and 4 deletions

View File

@ -131,10 +131,11 @@ vim.opt.expandtab = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.colorcolumn = '120'
-- Make line numbers default
vim.wo.number = true
vim.opt.colorcolumn = '120'
vim.opt.cursorline = true
-- Enable mouse mode
vim.o.mouse = 'a'

View File

@ -3,13 +3,12 @@
# --------------------------------
# Shell RC
# --------------------------------
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;41m\]$(hostname)\[\033[00m\]\[\033[01;34m\] \w\[\033[00m\] \$ '
PS1='${debian_chroot:+($debian_chroot)}\e[1;31m$(hostname) \e[0m\e[1;94m\w\e[0m\e[0;35m $(__git_ps1 " %s")\e[0m \e[1;31m \e[0m'
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;41m\]$(hostname)\[\033[00m\]\[\033[01;34m\] \w\[\033[00m\] \$ '
#
# Variables
#
export EDITOR=vim
export EDITOR=nvim
export PATH=~/bin:$PATH
#
@ -20,6 +19,7 @@ alias q=exit
alias a=clear
alias h=history
alias e=$EDITOR
alias n=nvim
#
# Functions