remove useless comments for vimrc and change hotkey from [w]rite to [s]ave
This commit is contained in:
parent
61f121cb7d
commit
a5a9888d22
2 changed files with 12 additions and 12 deletions
20
vimplugins
20
vimplugins
|
@ -9,18 +9,18 @@ silent!call plug#begin('~/.vim/plugged')
|
||||||
Plug 'junegunn/vim-plug'
|
Plug 'junegunn/vim-plug'
|
||||||
|
|
||||||
" general plugins
|
" general plugins
|
||||||
Plug 'directionalWindowResizer' "resize windows with simple hotkeys
|
Plug 'directionalWindowResizer'
|
||||||
Plug 'jeetsukumaran/vim-buffergator' "buffer management
|
Plug 'jeetsukumaran/vim-buffergator'
|
||||||
Plug 'junegunn/vim-easy-align' "aligning
|
Plug 'junegunn/vim-easy-align'
|
||||||
Plug 'mhinz/vim-signify' "version control system gutter info
|
Plug 'mhinz/vim-signify'
|
||||||
Plug 'nvie/vim-togglemouse' "hotkey to toggle mouse
|
Plug 'nvie/vim-togglemouse'
|
||||||
Plug 'tpope/vim-fugitive' "moar git awesomeness
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'vimwiki/vimwiki' "vimwiki
|
Plug 'vimwiki/vimwiki'
|
||||||
|
|
||||||
" IDE liek, per filetype
|
" IDE liek, per filetype
|
||||||
Plug 'neomake/neomake', { 'for': 'python' } "linter
|
Plug 'neomake/neomake', { 'for': 'python' }
|
||||||
Plug 'davidhalter/jedi-vim', { 'for': 'python' } "python support
|
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
||||||
Plug 'ervandew/supertab', { 'for': 'python' } "TAB autocompletion
|
Plug 'ervandew/supertab', { 'for': 'python' }
|
||||||
|
|
||||||
" colorschemes
|
" colorschemes
|
||||||
Plug 'lifepillar/vim-solarized8'
|
Plug 'lifepillar/vim-solarized8'
|
||||||
|
|
4
vimrc
4
vimrc
|
@ -65,8 +65,8 @@ nnoremap q <Nop>
|
||||||
nnoremap qq :q<CR>
|
nnoremap qq :q<CR>
|
||||||
nnoremap qf :q!<CR>
|
nnoremap qf :q!<CR>
|
||||||
nnoremap qa :qa<CR>
|
nnoremap qa :qa<CR>
|
||||||
nnoremap qw :wq<CR>
|
nnoremap qs :wq<CR>
|
||||||
nnoremap <Leader>w :w<CR>
|
nnoremap <Leader>s :w<CR>
|
||||||
|
|
||||||
" plugins
|
" plugins
|
||||||
let plugins = expand("$HOME/.vimplugins")
|
let plugins = expand("$HOME/.vimplugins")
|
||||||
|
|
Loading…
Reference in a new issue