mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
feat: use lazy.nvim
This commit is contained in:
parent
2664b49a62
commit
5c8c442da4
37 changed files with 892 additions and 809 deletions
29
.config/nvim/lua/plugins/nice.lua
Normal file
29
.config/nvim/lua/plugins/nice.lua
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
return {
|
||||
-- Nice to have
|
||||
"tpope/vim-sleuth",
|
||||
"mg979/vim-visual-multi",
|
||||
{ "norcalli/nvim-colorizer.lua", config = true },
|
||||
{
|
||||
"ellisonleao/glow.nvim",
|
||||
opts = {
|
||||
glow_path = "glow", -- will be filled automatically with your glow bin in $PATH, if any
|
||||
install_path = "~/.local/bin", -- default path for installing glow binary
|
||||
border = "shadow", -- floating window border config
|
||||
style = "light", -- filled automatically with your current editor background, you can override using glow json style
|
||||
pager = false,
|
||||
width = 80,
|
||||
height = 100,
|
||||
width_ratio = 0.7, -- maximum width of the Glow window compared to the nvim window size (overrides `width`)
|
||||
height_ratio = 0.7,
|
||||
},
|
||||
},
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
{
|
||||
"akinsho/toggleterm.nvim",
|
||||
tag = "*",
|
||||
opts = {
|
||||
open_mapping = "<C-`>",
|
||||
size = 20,
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue