diff --git a/nvim.init.lazy.lua b/nvim.init.lazy.lua index dfe8d05..3ed4fdd 100644 --- a/nvim.init.lazy.lua +++ b/nvim.init.lazy.lua @@ -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' diff --git a/root.bashrc b/root.bashrc index 7f4bee4..d10d356 100644 --- a/root.bashrc +++ b/root.bashrc @@ -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