Settings for tagbar and neotags

This commit is contained in:
Ryan 2023-07-16 10:43:50 +08:00
parent 785cd1471f
commit 8c02d4ea84
Signed by: juan
GPG Key ID: 807ECD28A698D245
2 changed files with 11 additions and 3 deletions

View File

@ -20,3 +20,6 @@ o.mouse = "i"
-- leader settings
global.mapleader = ' '
-- env settings for plugins
global.tagbar_sort = 0

View File

@ -152,7 +152,12 @@ return require("packer").startup(function(use)
"c0r73x/neotags.lua",
event = "BufEnter",
config = function()
require("neotags").setup()
require("neotags").setup({
ctags = {
directory = vim.env.HOME .. '/.cache/nvim/neotags/' -- default directory where to store tags
}
})
end
})