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

Configure Feed

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

change git icons

+30 -93
+1 -1
.config/nvim/lazy-lock.json
··· 13 13 "harpoon": { "branch": "harpoon2", "commit": "87b1a3506211538f460786c23f98ec63ad9af4e5" }, 14 14 "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" }, 15 15 "lazydev.nvim": { "branch": "main", "commit": "ff2cbcba459b637ec3fd165a2be59b7bbaeedf0d" }, 16 - "lualine.nvim": { "branch": "master", "commit": "74114f0df664f14d7c228945693ba68a3b70a794" }, 16 + "lualine.nvim": { "branch": "master", "commit": "8811f3f3f4dc09d740c67e9ce399e7a541e2e5b2" }, 17 17 "mason-lspconfig.nvim": { "branch": "main", "commit": "25f609e7fca78af7cede4f9fa3af8a94b1c4950b" }, 18 18 "mason.nvim": { "branch": "main", "commit": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65" }, 19 19 "mini.ai": { "branch": "main", "commit": "43eb2074843950a3a25aae56a5f41362ec043bfa" },
+17 -90
.config/nvim/lua/plugins/core.lua
··· 1 + local diagnostics = { 2 + Error = "๏†ˆ ", 3 + Warn = "๏ฑ ", 4 + Hint = "๎ฌฆ ", 5 + Info = "๓ฑฏ ", 6 + } 7 + 8 + local kinds = { 9 + Enum = "๓ฐˆฒ ", 10 + EnumMember = "๎ซฑ ", 11 + Variable = "๎ชˆ ", 12 + file = "๏ƒถ", 13 + } 14 + 1 15 return { 2 16 "LazyVim/LazyVim", 17 + 3 18 opts = { 4 19 5 20 icons = { 6 - -- ๓ฐฉ‚ Diagnostics. 7 - diagnostics = { 8 - Error = "๎ช‡ ", 9 - Warn = "๏ฑ ", 10 - Hint = "๎ฌฆ ", 11 - Info = "๓ฑฏ ", 12 - }, 13 - 14 - -- ๏‡“ Git Diff. 15 - git = { 16 - added = "๎ซœ ", 17 - modified = "๎ซž ", 18 - removed = "๎ซŸ ", 19 - }, 20 - 21 - -- ๏€บ Icons for Completion. 22 - kinds = { 23 - Enum = "๓ฐˆฒ ", 24 - EnumMember = "๎ซฑ ", 25 - Variable = "๎ชˆ ", 26 - file = "๏ƒถ", 27 - }, 21 + diagnostics = diagnostics, 22 + kinds = kinds, 28 23 }, 29 24 }, 30 25 } 31 - 32 - -- icons = { 33 - -- misc = { 34 - -- dots = "๓ฐ‡˜", 35 - -- }, 36 - -- ft = { 37 - -- octo = "๏ˆ", 38 - -- }, 39 - -- dap = { 40 - -- Stopped = { "๓ฐ• ", "DiagnosticWarn", "DapStoppedLine" }, 41 - -- Breakpoint = "๏†’ ", 42 - -- BreakpointCondition = "๏™ ", 43 - -- BreakpointRejected = { "๏ช ", "DiagnosticError" }, 44 - -- LogPoint = ".>", 45 - -- }, 46 - -- diagnostics = { 47 - -- Error = "๏— ", 48 - -- Warn = "๏ฑ ", 49 - -- Hint = "๏ƒซ ", 50 - -- Info = "๏š ", 51 - -- }, 52 - -- git = { 53 - -- added = "๏ƒพ ", 54 - -- modified = "๏…‹ ", 55 - -- removed = "๏…† ", 56 - -- }, 57 - -- kinds = { 58 - -- Array = "๎ชŠ ", 59 - -- Boolean = "๓ฐจ™ ", 60 - -- Class = "๎ญ› ", 61 - -- Codeium = "๓ฐ˜ฆ ", 62 - -- Color = "๎ญœ ", 63 - -- Control = "๎ฉจ ", 64 - -- Collapsed = "๏‘  ", 65 - -- Constant = "๓ฐฟ ", 66 - -- Constructor = "๏ฃ ", 67 - -- Copilot = "๏’ธ ", 68 - -- Enum = "๏… ", 69 - -- EnumMember = "๏… ", 70 - -- Event = "๎ช† ", 71 - -- Field = "๏€ซ ", 72 - -- File = "๎ฉป ", 73 - -- Folder = "๎—ฟ ", 74 - -- Function = "๓ฐŠ• ", 75 - -- Interface = "๏ƒจ ", 76 - -- Key = "๎ช“ ", 77 - -- Keyword = "๎ญข ", 78 - -- Method = "๓ฐŠ• ", 79 - -- Module = "๏’‡ ", 80 - -- Namespace = "๓ฐฆฎ ", 81 - -- Null = "๎Š™ ", 82 - -- Number = "๓ฐŽ  ", 83 - -- Object = "๎ช‹ ", 84 - -- Operator = "๎ญค ", 85 - -- Package = "๏’‡ ", 86 - -- Property = "๏€ซ ", 87 - -- Reference = "๎ฌถ ", 88 - -- Snippet = "๎ญฆ ", 89 - -- String = "๎ชฑ ", 90 - -- Struct = "๓ฐ†ผ ", 91 - -- Supermaven = "๏€… ", 92 - -- TabNine = "๓ฐš ", 93 - -- Text = "๎ช“ ", 94 - -- TypeParameter = "๎ช’ ", 95 - -- Unit = "๎ช– ", 96 - -- Value = "๎ช“ ", 97 - -- Variable = "๓ฐ€ซ ", 98 - -- },
+11 -2
.config/nvim/lua/plugins/lualine.lua
··· 53 53 54 54 local branch = { 55 55 "branch", 56 - icon = "๎™", 56 + icon = "๓ฐœ˜", 57 57 } 58 58 59 59 local filename = { ··· 70 70 always_visible = true, 71 71 } 72 72 73 + local diff = { 74 + "diff", 75 + symbols = { 76 + added = "๎ซœ ", 77 + modified = "๎ซž ", 78 + removed = "๎ซŸ ", 79 + }, 80 + } 81 + 73 82 return { 74 83 "nvim-lualine/lualine.nvim", 75 84 opts = { ··· 84 93 lualine_a = { "mode" }, 85 94 lualine_b = { branch }, 86 95 lualine_c = { filename, diagnostics }, 87 - lualine_x = { "diff", "filetype" }, 96 + lualine_x = { diff, "filetype" }, 88 97 lualine_y = { "progress" }, 89 98 lualine_z = { "location" }, 90 99 },
+1
.config/nvim/lua/plugins/snacks.lua
··· 11 11 12 12 input = { 13 13 icon = "", 14 + 14 15 win = { 15 16 width = 20, 16 17 relative = "cursor",