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