- Not going to use wezterm

- Cleaned up $HOME directory
- Adhered to XDG Base Directory Specification
- Moved all common bash/zsh settings + Environment variables to .profiles
This commit is contained in:
Pratik Tripathy
2024-01-17 00:35:43 +05:30
parent 8f801384fd
commit 0d0620be00
15 changed files with 397 additions and 1873 deletions

View File

@@ -99,7 +99,6 @@ nnoremap <leader>/ :nohlsearch<CR>:diffupdate<CR>:normal! <C-L><CR>
" Changes the pwd to the opened file's directory
nnoremap <leader>cd :lcd %:h<CR>
" Map easymotion Plugin to <Leader>j
nnoremap <leader>j <Plug>(easymotion-s)

View File

@@ -1,4 +1,4 @@
let $VIMDIR="$HOME/.vim"
let $VIMDIR=expand($HOME)."/.vim"
let $VIMRC="$VIMDIR/vimrc"
" Load plugins
@@ -26,6 +26,8 @@ colorscheme deep-space
" VIM SPECIFIC CONFIG
"
""""""""""""""""""""""""""""""""
" Move the .viminfo file inside .vim directory
set viminfofile=$VIMDIR/viminfo
" Auto reload .vimrc
autocmd! bufwritepost $VIMRC source %