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

Configure Feed

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

add keymap to select everything around brackets

Kacaii 31d63b76 88709668

+4 -1
+3
.config/nvim/lua/config/keymaps.lua
··· 20 20 vim.keymap.set("n", "<leader>q", function() 21 21 require("quicker").toggle() 22 22 end, { desc = "Toggle quickfix" }) 23 + 24 + -- Copy everything between { and } including the brackets 25 + vim.keymap.set("n", "YY", "va{Vy", opts)
+1 -1
.config/nvim/lua/plugins/colorscheme.lua
··· 75 75 76 76 LspReferenceWrite = { bg = colors.none, bold = true }, 77 77 LspReferenceRead = { bg = colors.none, bold = true }, 78 - LspReferenceText = { bg = colors.none }, 78 + LspReferenceText = { bg = colors.none, bold = true }, 79 79 80 80 -- ๎ญฟ Making the float window same color as the bg 81 81 NormalFloat = { bg = colors.base },