Add extra plugins
This commit is contained in:
parent
e0f13e8ddf
commit
ea70daf7b4
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
'filipdutescu/renamer.nvim',
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
'rmagatti/auto-session',
|
||||
lazy = false,
|
||||
|
||||
---enables autocomplete for opts
|
||||
---@module "auto-session"
|
||||
---@type AutoSession.Config
|
||||
opts = {
|
||||
-- suppressed_dirs = { '~/', '~/Projects', '~/Downloads', '/' },
|
||||
allowed_dirs = { '~/development/nodejs/work' },
|
||||
-- log_level = 'debug',
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
'jellydn/typecheck.nvim',
|
||||
dependencies = { 'folke/trouble.nvim', dependencies = { 'nvim-tree/nvim-web-devicons' } },
|
||||
ft = { 'javascript', 'javascriptreact', 'json', 'jsonc', 'typescript' },
|
||||
opts = {
|
||||
debug = true,
|
||||
mode = 'trouble', -- "quickfix" | "trouble"
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
'<leader>st',
|
||||
'<cmd>Typecheck<cr>',
|
||||
desc = 'Run Type Check',
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Reference in New Issue