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

Configure Feed

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

turn off indent lines

kacaii ffb5a327 07332391

+21 -9
+8 -2
.config/nvim/lua/config/options.lua
··· 1 1 local opt = vim.opt 2 + local g = vim.g 2 3 3 - vim.g.snacks_animate = true 4 + g.snacks_animate = true 5 + 6 + opt.listchars = { 7 + tab = " ", 8 + trail = " ", 9 + nbsp = " ", 10 + } 4 11 5 12 opt.scrolloff = 10 6 13 opt.cursorline = false 7 - opt.termguicolors = true
+3 -3
.config/nvim/lua/plugins/colorscheme.lua
··· 172 172 NoiceScrollbar = { bg = colors.none }, 173 173 NoiceScrollbarThumb = { bg = colors.overlay1 }, 174 174 175 - RenderMarkdownCode = { bg = colors.none }, 176 - RenderMarkdownCodeInline = { bg = colors.none }, 175 + RenderMarkdownCode = { bg = colors.mantle }, 176 + RenderMarkdownCodeInline = { bg = colors.mantle }, 177 177 RenderMarkdownBullet = { fg = colors.text }, 178 178 179 179 ["@markup.quote"] = { fg = colors.pink }, 180 - ["@markup.raw.markdown_inline"] = { fg = colors.sky, bg = colors.surface0 }, 180 + ["@markup.raw.markdown_inline"] = { fg = colors.lavender, bg = colors.surface0 }, 181 181 ["@markup.raw.block.markdown"] = { fg = colors.lavender, bg = colors.none }, 182 182 ["@markup.strong.markdown_inline"] = { fg = colors.peach }, 183 183 ["@markup.heading.git_config"] = { fg = colors.maroon },
+6 -1
.config/nvim/lua/plugins/render_markdown.lua
··· 4 4 latex = { enabled = false }, 5 5 completions = { lsp = { enabled = true } }, 6 6 heading = { enabled = false }, 7 - code = { style = "normal" }, 7 + code = { 8 + language_border = " ", 9 + language_left = "โ–’", 10 + language_right = "โ–’", 11 + min_width = 80, 12 + }, 8 13 checkbox = { 9 14 enabled = true, 10 15 checked = { scope_highlight = "@markup.strikethrough" },
+4 -3
.config/nvim/lua/plugins/snacks.lua
··· 19 19 }, 20 20 21 21 indent = { 22 - only_scope = true, 23 - scope = { enabled = true, hl = "Comment" }, 24 - animate = { style = "down" }, 22 + enabled = false, 23 + -- only_scope = true, 24 + -- scope = { enabled = true, hl = "Comment" }, 25 + -- animate = { style = "down" }, 25 26 }, 26 27 }, 27 28 }