feat: add autopair and brackets
also make non italic :)
This commit is contained in:
parent
a7f28e9984
commit
951e190b7f
4 changed files with 18 additions and 6 deletions
7
lua/plugins/autopairs.lua
Normal file
7
lua/plugins/autopairs.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"windwp/nvim-autopairs",
|
||||
event = "InsertEnter",
|
||||
config = true,
|
||||
-- use opts = {} for passing setup options
|
||||
-- this is equivalent to setup({}) function
|
||||
}
|
||||
3
lua/plugins/rainbow-brackets.lua
Normal file
3
lua/plugins/rainbow-brackets.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
"HiPhish/rainbow-delimiters.nvim",
|
||||
}
|
||||
|
|
@ -7,7 +7,7 @@ return {
|
|||
require("cyberdream").setup({
|
||||
transparent = true,
|
||||
borderless_pickers = false,
|
||||
terminal_colors = true
|
||||
terminal_colors = true,
|
||||
})
|
||||
--vim.cmd("colorscheme cyberdream")
|
||||
end,
|
||||
|
|
@ -25,11 +25,11 @@ return {
|
|||
},
|
||||
styles = {
|
||||
bold = true,
|
||||
italic = true,
|
||||
transparency = true,
|
||||
}
|
||||
italic = false,
|
||||
transparency = false,
|
||||
},
|
||||
})
|
||||
vim.cmd("colorscheme rose-pine-main")
|
||||
end
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue