πŸ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bring back snacks explorer

kacaii 918ab64b 96be02d3

+9 -35
+1 -4
.config/nvim/lua/plugins/disable.lua
··· 1 - return { 2 - "folke/snacks.nvim", 3 - opts = { explorer = { enabled = false } }, 4 - } 1 + return {}
+8 -21
.config/nvim/lua/plugins/mini_icons.lua
··· 7 7 os = {}, 8 8 9 9 directory = { 10 - src = { hl = "MiniIconsOrange" }, 10 + src = { glyph = "σ±§Ά", hl = "MiniIconsOrange" }, 11 11 sql = { glyph = "󱋣", hl = "MiniIconsYellow" }, 12 12 priv = { glyph = "σ°’¬", hl = "MiniIconsRed" }, 13 13 config = { glyph = "ξ—Ό" }, 14 14 plugins = { glyph = "󰉓" }, 15 - ["terminal-escape-codes"] = { glyph = "" }, 15 + workflows = { glyph = "σ°‘°" }, 16 + 17 + [".tangled"] = { glyph = "󰲂", hl = "MiniIconsWhite" }, 18 + [".jj"] = { glyph = "σ°‘°", hl = "MiniIconsBlue" }, 16 19 }, 17 20 18 21 extension = { ··· 38 41 [".sqlfluff"] = { glyph = "ξ˜•", hl = "MiniIconsWhite" }, 39 42 [".envrc"] = { glyph = "", hl = "MiniIconsYellow" }, 40 43 ["Taskfile.yml"] = { glyph = "󰆧", hl = "MiniIconsCyan" }, 41 - ["tailwind.config.js"] = { glyph = "ξ’Ί", hl = "MiniIconsCyan" }, 44 + ["tailwind.config.js"] = { glyph = "ξ’Ί", hl = "MiniIconsBlue" }, 45 + 46 + ["gleam.toml"] = { glyph = "󱙨", hl = "MiniIconsPurple" }, 42 47 43 48 -- ξŸ€ Deno Projects ------------------------------------------------------ 44 49 ["deno.json"] = { glyph = "ξŸ€", hl = "MiniIconsOrange" }, ··· 47 52 48 53 -- ξ˜† Python Projects ---------------------------------------------------- 49 54 ["poetry.lock"] = { glyph = "ξ‘§", hl = "MiniIconsBlue" }, 50 - 51 - -- σ°’² Lazy Config Files -------------------------------------------------- 52 - ["colorscheme.lua"] = { glyph = "", hl = "MiniIconsPurple" }, 53 - ["core.lua"] = { glyph = "", hl = "MiniIconsGreen" }, 54 - ["disable.lua"] = { glyph = "", hl = "MiniIconsRed" }, 55 - ["keymaps.lua"] = { glyph = "󰌌", hl = "MiniIconsOrange" }, 56 - ["lazy.lua"] = { glyph = "σ°’²", hl = "MiniIconsPurple" }, 57 - ["options.lua"] = { glyph = "ξ˜•", hl = "MiniIconsOrange" }, 58 - ["autocmds.lua"] = { glyph = "ο’΅", hl = "MiniIconsOrange" }, 59 - ["blink-cmp.lua"] = { glyph = "󱐀", hl = "MiniIconsPurple" }, 60 - ["mini-icons.lua"] = { glyph = "ξΎ¨", hl = "MiniIconsPurple" }, 61 - ["tmux-navigator.lua"] = { glyph = "", hl = "MiniIconsGreen" }, 62 - 63 - -- 󱐀 Code Snippets ------------------------------------------------------ 64 - ["terminal-colors.json"] = { glyph = "ο’‰", hl = "MiniIconsBlue" }, 65 - ["terminal-cursor-controls.json"] = { glyph = "ο’‰", hl = "MiniIconsBlue" }, 66 - ["terminal-general-ascii.json"] = { glyph = "ο’‰", hl = "MiniIconsBlue" }, 67 - ["terminal-modes.json"] = { glyph = "ο’‰", hl = "MiniIconsBlue" }, 68 55 }, 69 56 }, 70 57 }
-10
.config/nvim/lua/plugins/oil.lua
··· 1 - return { 2 - "stevearc/oil.nvim", 3 - -- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations. 4 - lazy = false, 5 - 6 - ---@module 'oil' 7 - ---@type oil.SetupOpts 8 - keys = { { "<leader>e", "<cmd>Oil<cr>", desc = "Open oil.nvim navigation" } }, 9 - opts = { default_file_explorer = true }, 10 - }