Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/user/gps.lua

35 lines
1,003 B
Lua
Raw Normal View History

2022-06-23 07:34:18 +00:00
local status_ok, gps = pcall(require, "nvim-gps")
if not status_ok then
return
end
gps.setup({
disable_icons = false, -- Setting it to true will disable all icons
icons = {
["class-name"] = "", -- Classes and class-like objects
["function-name"] = "", -- Functions
["method-name"] = "", -- Methods (functions inside class-like objects)
["container-name"] = "", -- Containers (example: lua tables)
["tag-name"] = "", -- Tags (example: html tags)
["mapping-name"] = "",
["sequence-name"] = "",
["null-name"] = "[] ",
["boolean-name"] = "ﰰﰴ ",
["integer-name"] = "# ",
["float-name"] = "",
["string-name"] = "",
["array-name"] = "",
["object-name"] = "",
["number-name"] = "# ",
["table-name"] = "",
["date-name"] = "",
["date-time-name"] = "",
["inline-table-name"] = "",
["time-name"] = "",
["module-name"] = "",
},
separator = " > ",
depth = 0,
depth_limit_indicator = "..",
})