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

Configure Feed

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

remove part of noice config

Kacaii e4c23a1c 260fc436

+18 -16
+1
nvim/lua/config/options.lua
··· 1 1 local opt = vim.opt 2 2 3 3 vim.g.snacks_animate = true 4 + 4 5 opt.scrolloff = 10 5 6 opt.cursorline = true
+5
nvim/lua/plugins/colorscheme.lua
··· 105 105 SnacksDashboardIcon = { fg = colors.mauve }, 106 106 SnacksDashboardKey = { fg = colors.mauve }, 107 107 108 + -- ๓ฑฅฐ Snacks.input -- 109 + SnacksInputIcon = { fg = colors.text }, 110 + SnacksInputTitle = { fg = colors.text }, 111 + SnacksInputBorder = { fg = colors.text }, 112 + 108 113 -- ๎Žฟ Noice 109 114 NoiceScrollbar = { bg = colors.base }, 110 115 NoiceScrollbarThumb = { bg = colors.overlay1 },
+1 -11
nvim/lua/plugins/noice.lua
··· 1 1 return { 2 2 "folke/noice.nvim", 3 - opts = { 4 - cmdline = { 5 - view = "cmdline", 6 - format = { cmdline = { icon = "๏’ต" } }, 7 - }, 8 - presets = { 9 - bottom_search = true, 10 - lsp_doc_border = true, 11 - command_palette = false, 12 - }, 13 - }, 3 + opts = { presets = { lsp_doc_border = true } }, 14 4 }
+11 -5
nvim/lua/plugins/snacks.lua
··· 1 1 return { 2 - "snacks.nvim", 2 + "folke/snacks.nvim", 3 3 opts = { 4 4 picker = { layout = "dropdown" }, 5 + input = { 6 + icon = "", 7 + win = { 8 + width = 20, 9 + relative = "cursor", 10 + row = -3, 11 + col = 0, 12 + }, 13 + }, 5 14 indent = { 6 15 only_scope = true, 7 16 scope = { enabled = true, hl = "Comment" }, 8 - animate = { 9 - style = "down", 10 - easing = "inOutCirc", 11 - }, 17 + animate = { style = "down", easing = "inOutCirc" }, 12 18 }, 13 19 }, 14 20 }