diff options
author | dx <aryadevchavali1@gmail.com> | 2020-07-15 15:35:24 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-07-15 15:35:24 +0100 |
commit | 9f963d7e385cfb9b8dd1b4cbd9192bf54a166654 (patch) | |
tree | ef00270de67f1afd9290b73cbb1ef7229bc98b5c /vim | |
parent | b41c6dfec4db0a8395d72a76b37d842a2b1221a4 (diff) | |
download | dotfiles-9f963d7e385cfb9b8dd1b4cbd9192bf54a166654.tar.gz dotfiles-9f963d7e385cfb9b8dd1b4cbd9192bf54a166654.tar.bz2 dotfiles-9f963d7e385cfb9b8dd1b4cbd9192bf54a166654.zip |
-a lot of my vim config
What's the point of trying to make my vim config more like doom, when I
can just let vim do the thing it's best at: quick edits. So my shortcuts
should reflect this.
Diffstat (limited to 'vim')
-rw-r--r-- | vim/.vimrc | 49 |
1 files changed, 1 insertions, 48 deletions
@@ -53,53 +53,6 @@ colorscheme elflord "" Dir Config let g:NERDTreeHijackNetrw = 1 - "" Keybinds imap jk <Esc> - "" General keybind -nnoremap <leader>fp :e ~/.vimrc<CR> -nnoremap <leader>fei :e ~/.vim/ftplugin<CR> -nnoremap <leader>fr :so ~/.vimrc<CR>:PluginInstall<CR>:PluginClean<CR> -nnoremap <leader>qq :q!<CR> -nnoremap <leader>gs :G<CR> -nnoremap <leader><leader> : - - "" File Management -nnoremap <leader>ff :e -nnoremap <leader>fs :w<CR> -nnoremap <leader>fq :wq<CR> -nnoremap <leader>fn :enew<CR> -nnoremap <F8> :set hlsearch! hlsearch?<CR> - - "" Buffer Management -nnoremap <leader>bb :b -nnoremap <leader>bn :bn <CR> -nnoremap <leader>bp :bp <CR> -nnoremap <leader>bd :bd <CR> - - "" Search -nnoremap <leader>ss / - - "" Window Splits -nnoremap <leader>wv <C-W>v -nnoremap <leader>ws <C-W>s -nnoremap <leader>wd <C-W>q - - "" Window Resizes -nnoremap <leader>wj :resize -5<CR> -nnoremap <leader>wk :resize +5<CR> -nnoremap <leader>wl <C-W>5> -nnoremap <leader>wh <C-W>5< - - "" Window Movement -nnoremap <leader>j <C-W><C-J> -nnoremap <leader>k <C-W><C-K> -nnoremap <leader>l <C-W><C-L> -nnoremap <leader>h <C-W><C-H> - - "" Projects -nnoremap <leader>ot :NERDTreeToggle<CR> -nnoremap <leader>pg :!ctags-exuberant -R --exclude=Makefile . - - "" Tags -nnoremap <leader>tt :Tags<CR> +nmap <leader>f :e |