convert init.vim in modules, update zsh && git

This commit is contained in:
Smirnov Alexander 2021-06-02 19:40:42 +03:00
parent a4532907b4
commit eb4f1a5b5a
14 changed files with 170 additions and 73 deletions

View file

@ -0,0 +1,17 @@
" Settings
let bufferline = get(g:, 'bufferline', {})
let bufferline.icons = v:false
let bufferline.icon_close_tab = '🗴'
" Mappings
nno <A-1> :BufferGoto 1<cr>
nno <A-2> :BufferGoto 2<cr>
nno <A-3> :BufferGoto 3<cr>
nno <A-4> :BufferGoto 4<cr>
nno <A-5> :BufferGoto 5<cr>
nno <A-6> :BufferGoto 6<cr>
nno <A-7> :BufferGoto 7<cr>
nno <A-8> :BufferGoto 8<cr>
nno <A-9> :BufferGoto 9<cr>
nno <C-w> :BufferClose<cr>
nno <S-x> :BufferClose!<cr>