Add TS filename refactoring. Add new file search alternative

This commit is contained in:
Juan Magalhães 2023-11-10 20:53:12 -03:00
parent 4db1e0261b
commit 3e4e1785c3
6 changed files with 42 additions and 1 deletions

View file

@ -64,6 +64,24 @@ local plugins = {
end,
},
-- JSDoc
{
"danymat/neogen",
dependencies = "nvim-treesitter/nvim-treesitter",
config = true,
-- Uncomment next line if you want to follow only stable versions
version = "*",
opts = {
languages = {
typescript = {
template = {
annotation_convention = "jsdoc",
},
},
}
}
},
--[[
{
-- Theme inspired by Atom
@ -147,6 +165,8 @@ local plugins = {
require 'core.plugins.nvim-ufo',
require 'kickstart.plugins.autoformat',
require 'core.plugins.lsp-file-operations',
}
local pluginOptions = {}