From e794c750f0b5bbb3952a29f5a786c04d11a263fb Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Mon, 22 Sep 2025 10:13:04 -0400 Subject: [PATCH] add vim-sleuth and fzf plugins --- dot_config/nvim/lua/plugins.lua | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/dot_config/nvim/lua/plugins.lua b/dot_config/nvim/lua/plugins.lua index 5558b72..0f31f9b 100644 --- a/dot_config/nvim/lua/plugins.lua +++ b/dot_config/nvim/lua/plugins.lua @@ -11,15 +11,21 @@ return require('packer').startup(function(use) -- Packer can manage itself use 'wbthomason/packer.nvim' - -- LSP / COMPLETION -- - use {'neoclide/coc.nvim', branch = "release"} + -- LSP / COMPLETION -- + use {'neoclide/coc.nvim', branch = "release"} - -- Gruvbox colorscheme - use 'ellisonleao/gruvbox.nvim' + -- automatically adjust tab based on current file + use 'tpope/vim-sleuth' - use 'lukas-reineke/indent-blankline.nvim' + use 'junegunn/fzf' + use 'junegunn/fzf.vim' - use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'} + -- Gruvbox colorscheme + use 'ellisonleao/gruvbox.nvim' + + use 'lukas-reineke/indent-blankline.nvim' + + use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'} -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins