diff options
Diffstat (limited to 'common/nvim/lua/plugins/navic.lua')
| -rwxr-xr-x | common/nvim/lua/plugins/navic.lua | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/common/nvim/lua/plugins/navic.lua b/common/nvim/lua/plugins/navic.lua deleted file mode 100755 index a574d5c..0000000 --- a/common/nvim/lua/plugins/navic.lua +++ /dev/null @@ -1,51 +0,0 @@ -local M = {} - -function M.setup() - local ok, navic = pcall(require, "nvim-navic") - if not ok or not navic then - return false - end - - navic.setup({ - icons = { - File = " ", - Module = " ", - Namespace = " ", - Package = " ", - Class = " ", - Method = " ", - Property = " ", - Field = " ", - Constructor = " ", - Enum = "練", - Interface = "練", - Function = " ", - Variable = " ", - Constant = " ", - String = " ", - Number = " ", - Boolean = "◩ ", - Array = " ", - Object = " ", - Key = " ", - Null = "ﳠ ", - EnumMember = " ", - Struct = " ", - Event = " ", - Operator = " ", - TypeParameter = " " - }, - highlight = false, - separator = " > ", - depth_limit = 0, - depth_limit_indicator = "..", - safe_output = true, - lsp = { - auto_attach = true - } - }) - - return true -end - -return M |
