diff options
author | nathan11 <thenathansmithsmith@gmail.com> | 2023-07-25 00:52:07 -0600 |
---|---|---|
committer | nathan11 <thenathansmithsmith@gmail.com> | 2023-07-25 00:52:07 -0600 |
commit | 0f8c62f2d18fd86e2bad01a33e5e9beb4e2ef77b (patch) | |
tree | e098cecfe770af08bd77eda320f8a0260c3c68c6 /lua/config_navic.lua |
first commit
Diffstat (limited to 'lua/config_navic.lua')
-rw-r--r-- | lua/config_navic.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lua/config_navic.lua b/lua/config_navic.lua new file mode 100644 index 0000000..c4eec0b --- /dev/null +++ b/lua/config_navic.lua @@ -0,0 +1,35 @@ +require("nvim-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 +} |