You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
488 B
Lua

local present, navigator = pcall(require, "navigator")
if not present then
return
end
local config = {
-- debug = true,
transparency = nil,
default_mapping = true,
-- keymaps = {
--
-- },
-- TODO: remap all keys to restore default keys maps like `gi`
lsp = {
document_highlight = false,
mason = true,
format_on_save = false, -- applies to all formatting feature of neovim
-- including auto-fold
}
}
navigator.setup(config)