Add idb & vcc

This commit is contained in:
2024-12-27 18:58:44 +01:00
parent 8770fac2cb
commit 2725b614cd
3 changed files with 62 additions and 0 deletions
+10
View File
@@ -30,6 +30,7 @@ in
catppuccin-nvim
nvim-treesitter.withAllGrammars
nvim-treesitter-textobjects
vim-illuminate
nvim-lspconfig
oil-nvim
nvim-surround
@@ -37,17 +38,25 @@ in
vim-sleuth
auto-save-nvim
gitsigns-nvim
git-conflict-nvim
mini-icons
mini-operators
mini-splitjoin
vim-wordmotion
increment-activator
leap-nvim
flit-nvim
which-key-nvim
nvim-colorizer-lua
nvim-pqf
lualine-nvim
nvim-navic
virt-column-nvim
indent-blankline-nvim
SchemaStore-nvim
blink-cmp
@@ -58,6 +67,7 @@ in
# clashes with oil
postPatch = "rm doc/recipes.md";
})
vim-helm
];
opt = [
telescope-nvim
+51
View File
@@ -14,6 +14,12 @@ return {
blink_cmp = true,
harpoon = true,
nvim_surround = true,
which_key = true,
navic = true,
leap = true,
fidget = false,
noice = false,
},
},
after = function(plug)
@@ -21,4 +27,49 @@ return {
vim.cmd.colorscheme("catppuccin")
end,
},
{
"virt-column.nvim",
lazy = false,
load = function() end,
opts = {
char = "",
},
after = function(plug)
require("virt-column").setup(plug.opts)
end,
},
{
"indent-blankline.nvim",
lazy = false,
load = function() end,
event = { "BufReadPost", "BufWritePost", "BufNewFile" },
opts = {
indent = {
char = "",
tab_char = "",
},
exclude = {
filetypes = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"lazy",
"lspinfo",
"packer",
"checkhealth",
"help",
"man",
"",
}
},
scope = { show_start = false, show_end = false, },
},
after = function(plug)
require("ibl").setup(plug.opts)
end,
},
}
+1
View File
@@ -27,6 +27,7 @@ vim.opt.breakindent = true
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.colorcolumn = { 80, 120 }
vim.opt.list = true
vim.opt.listchars = {
space = "·",