commit ad973c098ce2eb04c08a4849bff69be6321e88bf
parent 537fb231be71327f4ae72b9d1b9b3d305850a28a
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 30 Aug 2024 17:53:43 -0700
vim: avoid nerd font icons emoji already exist
Rather than installing even more fonts, go with the ones we already
have.
Diffstat:
2 files changed, 29 insertions(+), 1 deletion(-)
diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json
@@ -10,7 +10,7 @@
   "lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
   "lspkind.nvim": { "branch": "master", "commit": "cff4ae321a91ee3473a92ea1a8c637e3a9510aec" },
   "nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" },
-  "nvim-lspconfig": { "branch": "master", "commit": "6bfd9210e312af6cfedba05d272e85618c93ab0d" },
+  "nvim-lspconfig": { "branch": "master", "commit": "3ad562700d0615818bf358268ac8914f6ce2b079" },
   "nvim-tree.lua": { "branch": "master", "commit": "d43ab67d0eb4317961c5e9d15fffe908519debe0" },
   "nvim-web-devicons": { "branch": "master", "commit": "3722e3d1fb5fe1896a104eb489e8f8651260b520" },
   "rust.vim": { "branch": "master", "commit": "889b9a7515db477f4cb6808bef1769e53493c578" },
diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua
@@ -26,4 +26,32 @@ require("lazy").setup({
   install = { colorscheme = { "solarized-osaka" } },
   -- automatically check for plugin updates
   checker = { enabled = true },
+  -- lazy.nvim wants a nerd font installed. I don't.
+  ui = {
+    icons = {
+      cmd = "🏷️",
+      config = "🔧",
+      event = "⚡️",
+      favorite = "⭐️",
+      ft = "📄",
+      init = "⚙️ ",
+      import = "⬇️ ",
+      keys = "💻",
+      lazy = "💤",
+      loaded = "●",
+      not_loaded = "⚪︎",
+      plugin = "📦",
+      runtime = "🚅",
+      require = "📋",
+      source = "</> ",
+      start = "▶️ ",
+      task = "✅",
+      list = {
+        "•",
+        "◦",
+        "⁃",
+        "‣",
+      },
+    },
+  },
 })