diff options
author | Yigit Sever | 2022-05-22 23:12:32 +0300 |
---|---|---|
committer | Yigit Sever | 2022-05-22 23:12:32 +0300 |
commit | 49aba391f0bcf2a4bd04d59a6795ff1f62e01a36 (patch) | |
tree | 88d9be3fb29ffd3ff7ab6ada77b8f9d7b209aab4 /.config/nvim | |
parent | a4ca205f1fd716291d2eaa571b397b6d2cbeaa78 (diff) | |
download | dotfiles-49aba391f0bcf2a4bd04d59a6795ff1f62e01a36.tar.gz dotfiles-49aba391f0bcf2a4bd04d59a6795ff1f62e01a36.tar.bz2 dotfiles-49aba391f0bcf2a4bd04d59a6795ff1f62e01a36.zip |
nvim: impatient & sleuth
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/init.lua | 2 | ||||
-rw-r--r-- | .config/nvim/lua/plugins.lua | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index cd20fc3..2dacd0b 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua | |||
@@ -11,6 +11,8 @@ | |||
11 | -- │ ▘▝▀▘▝▀▘│ | 11 | -- │ ▘▝▀▘▝▀▘│ |
12 | -- └────────┘ | 12 | -- └────────┘ |
13 | 13 | ||
14 | require('impatient') | ||
15 | |||
14 | require('plugins') | 16 | require('plugins') |
15 | require('settings') | 17 | require('settings') |
16 | require('plugin_settings') | 18 | require('plugin_settings') |
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' | ||
154 | end) | 161 | end) |