diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-05-25 22:14:32 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:31 +0100 |
commit | 4b91bdd65be5c0d7c388a6ca0429aff133bd36b5 (patch) | |
tree | 04da488488528f1e33bb21db5ef3c33c5fa74610 | |
parent | 64f66dd34ec726fd60eb3c7eedbcd6197a516a67 (diff) | |
download | dotnvim-4b91bdd65be5c0d7c388a6ca0429aff133bd36b5.tar.gz dotnvim-4b91bdd65be5c0d7c388a6ca0429aff133bd36b5.zip |
From bufkill to bufdel
-rw-r--r-- | vimrc | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -49,15 +49,15 @@ Plug 'wincent/terminus' " life improvements Plug 'gruvbox-community/gruvbox' Plug 'scrooloose/nerdtree' -Plug 'qpkorr/vim-bufkill' Plug 'Chiel92/vim-autoformat' Plug 'jsfaint/gen_tags.vim' Plug 'rbong/vim-crystalline' Plug 'godlygeek/tabular' -Plug 'plasticboy/vim-markdown' Plug 'vimwiki/vimwiki' +Plug 'ojroques/nvim-bufdel' " language support +Plug 'plasticboy/vim-markdown' Plug 'samsaga2/vim-z80' Plug 'tomtom/tcomment_vim' Plug 'https://tildegit.org/sloum/gemini-vim-syntax.git' @@ -93,11 +93,15 @@ call plug#end() " which-key " :lua << EOF - require("which-key").setup { - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - } + require("which-key").setup { } +EOF + +" BufKil +:lua << EOF + require('bufdel').setup { + next = 'cycle', + quit = false, +} EOF " crystaline conf |