aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/icons.lua
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-03-25 23:38:13 -0500
committerToby Vincent <tobyv13@gmail.com>2022-03-25 23:38:13 -0500
commite6051a38a672182c7f7dfa083ca1e72b97803c94 (patch)
tree734e251bab033169399432fe1c93fc879dfab578 /nvim/lua/icons.lua
parentbb375ba979dfc0c575443f8309ee52d0fd446a26 (diff)
feat: migrated to gnu stow
Diffstat (limited to 'nvim/lua/icons.lua')
-rw-r--r--nvim/lua/icons.lua106
1 files changed, 0 insertions, 106 deletions
diff --git a/nvim/lua/icons.lua b/nvim/lua/icons.lua
deleted file mode 100644
index be868a0..0000000
--- a/nvim/lua/icons.lua
+++ /dev/null
@@ -1,106 +0,0 @@
--- https://github.com/microsoft/vscode/blob/main/src/vs/base/common/codicons.ts
--- go to the above and then enter <c-v>u<unicode> and the symbold should appear
--- or go here and upload the font file: https://mathew-kurian.github.io/CharacterMap/
--- find more here: https://www.nerdfonts.com/cheat-sheet
---   פּ ﯟ   蘒練 some other good icons
-return {
- kind = {
- Text = "",
- -- Method = "m",
- -- Function = "",
- -- Constructor = "",
- Method = "",
- Function = "",
- Constructor = "",
- Field = "",
- -- Variable = "",
- Variable = "",
- Class = "",
- Interface = "",
- -- Module = "",
- Module = "",
- Property = "",
- Unit = "",
- Value = "",
- Enum = "",
- -- Keyword = "",
- Keyword = "",
- -- Snippet = "",
- Snippet = "",
- Color = "",
- File = "",
- Reference = "",
- Folder = "",
- EnumMember = "",
- Constant = "",
- Struct = "",
- Event = "",
- Operator = "",
- TypeParameter = "",
- },
- type = {
- Array = "",
- Number = "",
- String = "",
- Boolean = "蘒",
- Object = "",
- },
- documents = {
- File = "",
- Files = "",
- Folder = "",
- OpenFolder = "",
- },
- git = {
- Add = "",
- Mod = "",
- Remove = "",
- Ignore = "",
- Rename = "",
- Diff = "",
- Repo = "",
- },
- ui = {
- Lock = "",
- Circle = "",
- BigCircle = "",
- BigUnfilledCircle = "",
- Close = "",
- NewFile = "",
- Search = "",
- Lightbulb = "",
- Project = "",
- Dashboard = "",
- History = "",
- Comment = "",
- Bug = "",
- Code = "",
- Telescope = "",
- Gear = "",
- Package = "",
- List = "",
- SignIn = "",
- Check = "",
- Fire = "",
- Note = "",
- BookMark = "",
- Pencil = "",
- -- ChevronRight = "",
- ChevronRight = ">",
- Table = "",
- Calendar = "",
- },
- diagnostics = {
- Error = "",
- Warning = "",
- Information = "",
- Question = "",
- Hint = "",
- },
- misc = {
- Robot = "ﮧ",
- Squirrel = "",
- Tag = "",
- Watch = "",
- },
-} \ No newline at end of file