Add Config Files
This commit is contained in:
parent
ade387bdb6
commit
f071a73fdb
520 changed files with 45353 additions and 1 deletions
13
.config/nvim/lua/plugins/minimap.lua
Normal file
13
.config/nvim/lua/plugins/minimap.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
"wfxr/minimap.vim",
|
||||
requires = {
|
||||
"wfxr/code-minimap", -- Dependency for the minimap
|
||||
},
|
||||
run = "cargo install --locked code-minimap", -- Install the code-minimap dependency
|
||||
config = function()
|
||||
vim.cmd("let g:minimap_width = 40") -- Example of setting up the minimap width
|
||||
vim.cmd("let g:minimap_auto_start = 1") -- Automatically start the minimap
|
||||
vim.cmd("let g:minimap_auto_start_win_enter = 1") -- Automatically start minimap on window enter
|
||||
end,
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue