aboutsummaryrefslogtreecommitdiffhomepage
path: root/vimrc
diff options
context:
space:
mode:
authortypebrook <typebrook@gmail.com>2019-03-05 08:38:33 +0800
committertypebrook <typebrook@gmail.com>2019-03-05 08:38:33 +0800
commit878acfab476ea180acd3a57791ecaad56b7303b2 (patch)
tree78b6328150fbfe3a22ade9e4b3f785037f6a4621 /vimrc
parent1e70a5998c2362c3880bdc8552f4ef711792d9a8 (diff)
update
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc8
1 files changed, 7 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 63282b4..5e61f42 100644
--- a/vimrc
+++ b/vimrc
@@ -10,9 +10,11 @@ set nosol
10set ss=1 10set ss=1
11set siso=999 11set siso=999
12"set clipboard=unnamedplus 12"set clipboard=unnamedplus
13let g:vim_markdown_conceal = 0
13 14
14nmap <c-c> :q<cr> 15nmap <c-c> :q<cr>
15nnoremap <leader>r :.w !bash<cr> 16nnoremap <leader>r :.w !bash<cr>
17nnoremap <leader>tt :TableFormat<cr>
16 18
17 19
18""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 20"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@@ -40,7 +42,11 @@ Plug 'Yggdroot/indentLine'
40Plug 'mileszs/ack.vim' 42Plug 'mileszs/ack.vim'
41Plug 'tpope/vim-surround' 43Plug 'tpope/vim-surround'
42Plug 'lifepillar/pgsql.vim' 44Plug 'lifepillar/pgsql.vim'
43Plug 'dhruvasagar/vim-table-mode' 45
46" Install vim-maktaba plugin for plugin developers - used in foldcol
47Plug 'google/vim-maktaba'
48" Install foldcol - folding columns using <ctrl-v> visual mark, then :VFoldCol
49" Plug 'paulhybryant/foldcol'
44 50
45" Initialize plugin system 51" Initialize plugin system
46call plug#end() 52call plug#end()