summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/plugins.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index a217616..ba5ae0b 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -9,6 +9,11 @@ return require('packer').startup(function()
9 -- packer can manage itself 9 -- packer can manage itself
10 use 'wbthomason/packer.nvim' 10 use 'wbthomason/packer.nvim'
11 11
12 -- improve startup time
13 -- remove when merged
14 -- https://github.com/neovim/neovim/pull/15436
15 use 'lewis6991/impatient.nvim'
16
12 -- latex suite 17 -- latex suite
13 use {'lervag/vimtex', ft = {'tex', 'latex', 'plaintext'}} 18 use {'lervag/vimtex', ft = {'tex', 'latex', 'plaintext'}}
14 19
@@ -151,4 +156,6 @@ return require('packer').startup(function()
151 use 'numToStr/Comment.nvim' 156 use 'numToStr/Comment.nvim'
152 -- asynchronous build and test dispatcher 157 -- asynchronous build and test dispatcher
153 use {'tpope/vim-dispatch', opt = true, cmd = {'Dispatch', 'Make', 'Focus', 'Start'}} 158 use {'tpope/vim-dispatch', opt = true, cmd = {'Dispatch', 'Make', 'Focus', 'Start'}}
159 -- automatically adjust 'shiftwidth' and 'expandtab'
160 use 'tpope/vim-sleuth'
154end) 161end)