diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2021-08-10 00:51:38 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2021-08-10 00:51:38 -0500 |
commit | 0949414e76c75da02efb07dbe747f3387a24d2c0 (patch) | |
tree | 388c0ca6586b2301d9686ba8d37aa18672bf70a7 /nvim | |
parent | a3d99f320ae18449e35725cb433112f8c06943d6 (diff) | |
download | dotconfig-0949414e76c75da02efb07dbe747f3387a24d2c0.tar.xz dotconfig-0949414e76c75da02efb07dbe747f3387a24d2c0.zip |
changed name of home dirs and other small tweaks
Diffstat (limited to 'nvim')
-rwxr-xr-x | nvim/init.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 2f07f38..65e980e 100755 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -42,10 +42,10 @@ map <C-k> <C-u> map <C-h> 0 map <C-l> $ " Faster split navigation (alt-hjlk, as opposed to ctrl-w + hjlk) -map <A-h> <C-w>h -map <A-j> <C-w>j -map <A-k> <C-w>k -map <A-l> <C-w>l +"map <A-h> <C-w>h +"map <A-j> <C-w>j +"map <A-k> <C-w>k +"map <A-l> <C-w>l " Colorscheme for root and normal users (since vimrc is just symlinked to the root user's home) if ($USER) == 'root' @@ -68,8 +68,8 @@ else set cursorline " Highlight current line " Change the terminal emulator's window title and class name to vim autocmd BufEnter * :set title - autocmd VimEnter * :silent exec "!~/Scripts/st/settitle Vim" - autocmd VimLeave * :silent exec "!~/Scripts/st/settitle st" + autocmd VimEnter * :silent exec "!/home/timmy/scripts/st/settitle Vim" + autocmd VimLeave * :silent exec "!/home/timmy/scripts/st/settitle st" let &titleold="st" endif |