diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2024-01-12 19:51:00 -0500 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2024-01-12 19:51:00 -0500 |
| commit | 02e1c9be35e13e26b34bbfd680e18f3093ee2949 (patch) | |
| tree | d685a48185e8e6092d41d2cd03c678dc19b214ef /.config/nvim/lua/plugins.lua | |
| parent | 803274ed25384b4ffb134f35c910347c022999fd (diff) | |
ultimate yak shave: custom colorscheme
Diffstat (limited to '.config/nvim/lua/plugins.lua')
| -rw-r--r-- | .config/nvim/lua/plugins.lua | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index c97cb15..4e10a81 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -3,7 +3,8 @@ return require('packer').startup(function() use 'wbthomason/packer.nvim' - use 'morhetz/gruvbox' + -- use 'morhetz/gruvbox' + -- use 'tjdevries/colorbuddy.nvim' use 'edkolev/tmuxline.vim' use 'romainl/vim-cool' @@ -19,13 +20,16 @@ return require('packer').startup(function() use 'RRethy/vim-illuminate' -- better quickfix buffer - use { 'kevinhwang91/nvim-bqf', - ft = 'qf', + use { 'kevinhwang91/nvim-bqf', ft = 'qf', config = function() - require('bqf').setup { - -- your configuration comes here - -- or leave it empty to use the default settings - } + -- Adapt fzf's delimiter in nvim-bqf + require('bqf').setup({ + filter = { + fzf = { + extra_opts = { '--bind', 'ctrl-o:toggle-all', '--delimiter', '│' } + } + } + }) end } use 'matbme/JABS.nvim' -- buffer switcher @@ -57,9 +61,9 @@ return require('packer').startup(function() use 'tpope/vim-eunuch' -- wrappers UNIX commands use 'tpope/vim-surround' -- surround characters shortcuts - use 'tpope/vim-vinegar' -- make explore better use 'tpope/vim-endwise' -- wisely add use 'tpope/vim-repeat' -- repeat for plugins + use 'tpope/vim-vinegar' -- make explore better use { 'prichrd/netrw.nvim', -- particles for ^ config = function() @@ -129,4 +133,6 @@ return require('packer').startup(function() } end } + -- auto close delimiters because lazy + use 'm4xshen/autoclose.nvim' end) |
