aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-08-07 03:29:19 +0900
committersefidel <contact@sefidel.net>2024-08-07 03:29:19 +0900
commite74441a794234cf53aa7b582cb21d02df747313d (patch)
treee26d54625b62c29fc61029ade3bbd5b54556735d
parenta3c2cacb4fbc6fbba9aeeaab2c8b8d9012c263c1 (diff)
downloadnvimrc-e74441a794234cf53aa7b582cb21d02df747313d.zip
feat(packs/cmp): switch to single character icons
-rw-r--r--fnl/nvrc/packs/cmp.fnl23
1 files changed, 12 insertions, 11 deletions
diff --git a/fnl/nvrc/packs/cmp.fnl b/fnl/nvrc/packs/cmp.fnl
index 5ca7c1c..6fea0d1 100644
--- a/fnl/nvrc/packs/cmp.fnl
+++ b/fnl/nvrc/packs/cmp.fnl
@@ -14,28 +14,29 @@
(local icons {:Text "(t)"
:Method "(m)"
:Function "(f)"
- :Constructor "(cs)"
+ :Constructor "(C)"
:Field "(s)"
:Variable "(v)"
- :Class "(c)"
+ :Class "(C)"
:Interface "(i)"
:Module "(m)"
:Property "(p)"
:Unit "(u)"
:Value "(v)"
:Enum "(e)"
+ :EnumMember "(e)"
:Keyword "(k)"
- :Snippet "(sn)"
- :Color "(co)"
- :File "(fi)"
+ :Snippet "(S)"
+ :Color "(R)"
:Reference "(r)"
- :Folder "(fl)"
- :EnumMember "(em)"
- :Constant "(cn)"
+ :Constant "(c)"
:Struct "(s)"
- :Event "(ev)"
- :Operator "(op)"
- :TypeParameter "(tp)"})
+ :Event "(e)"
+ :Operator "(o)"
+ :TypeParameter "(T)"
+ :File "(F)"
+ :Folder "(F)"
+ })
(setup {:snippet {:expand (fn [args]
(vim.snippet.expand args.body))}