Settings for tagbar and neotags
This commit is contained in:
parent
785cd1471f
commit
8c02d4ea84
@ -20,3 +20,6 @@ o.mouse = "i"
|
|||||||
|
|
||||||
-- leader settings
|
-- leader settings
|
||||||
global.mapleader = ' '
|
global.mapleader = ' '
|
||||||
|
|
||||||
|
-- env settings for plugins
|
||||||
|
global.tagbar_sort = 0
|
||||||
|
@ -152,7 +152,12 @@ return require("packer").startup(function(use)
|
|||||||
"c0r73x/neotags.lua",
|
"c0r73x/neotags.lua",
|
||||||
event = "BufEnter",
|
event = "BufEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("neotags").setup()
|
require("neotags").setup({
|
||||||
|
ctags = {
|
||||||
|
directory = vim.env.HOME .. '/.cache/nvim/neotags/' -- default directory where to store tags
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user