nvim: impatient
This commit is contained in:
parent
49eda1a048
commit
e919c1c836
2 changed files with 17 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
root = true
|
||||
[*.lua]
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
|
|
@ -17,6 +17,12 @@ function M.setup()
|
|||
|
||||
local startup = function(use)
|
||||
use 'wbthomason/packer.nvim'
|
||||
use {
|
||||
'lewis6991/impatient.nvim',
|
||||
config = function()
|
||||
require('impatient')
|
||||
end,
|
||||
}
|
||||
|
||||
use {
|
||||
'neovim/nvim-lspconfig',
|
||||
|
@ -59,19 +65,9 @@ function M.setup()
|
|||
}
|
||||
|
||||
use { 'morhetz/gruvbox' }
|
||||
use { 'luisiacc/gruvbox-baby' }
|
||||
|
||||
use { 'chrisbra/Colorizer', cmd = 'ColorToggle', keys = { 'n', '<space>c <Cmd>ColorToggle<CR>' } }
|
||||
|
||||
--[[ use { 'kdheepak/lazygit.nvim',
|
||||
keys = { 'n', '<space>g <Cmd>LazyGit<CR>' },
|
||||
cmd = 'LazyGit',
|
||||
setup = function()
|
||||
vim.g.lazygit_floating_window_use_plenary = 1
|
||||
vim.g.lazygit_floating_window_use_plenary = 1
|
||||
end
|
||||
} ]]
|
||||
|
||||
use { "numToStr/FTerm.nvim",
|
||||
config = require("configs.fterm").setup
|
||||
}
|
||||
|
@ -115,12 +111,14 @@ function M.setup()
|
|||
config = require("configs.neotree").setup,
|
||||
}
|
||||
|
||||
use { 'vim-vdebug/vdebug' }
|
||||
use {
|
||||
'vim-vdebug/vdebug',
|
||||
opt = true,
|
||||
}
|
||||
|
||||
use { 'dyng/ctrlsf.vim', cmd = 'CtrlSF' }
|
||||
|
||||
use { 'folke/neodev.nvim' }
|
||||
use { 'rafcamlet/nvim-luapad' }
|
||||
|
||||
use { 'AndrewRadev/tagalong.vim' }
|
||||
use { 'andymass/vim-matchup' }
|
||||
|
@ -143,13 +141,18 @@ function M.setup()
|
|||
if packer_bootstrap then
|
||||
require('packer').sync()
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
require('packer').startup({
|
||||
startup,
|
||||
config = {
|
||||
max_jobs = 5,
|
||||
transitive_disable = false,
|
||||
display = {
|
||||
open_fn = function()
|
||||
return require('packer.util').float { border = 'single' }
|
||||
end,
|
||||
},
|
||||
}
|
||||
})
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue