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
|
|
@ -17,12 +17,14 @@
|
|||
"neoconf.nvim": { "branch": "main", "commit": "f2fd6a4f009d378b419cb5fd46377a2284b65aa7" },
|
||||
"noice.nvim": { "branch": "main", "commit": "7bfd942445fb63089b59f97ca487d605e715f155" },
|
||||
"nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" },
|
||||
"nvim-autopairs": { "branch": "master", "commit": "c2a0dd0d931d0fb07665e1fedb1ea688da3b80b4" },
|
||||
"nvim-jdtls": { "branch": "master", "commit": "f73731b543f5971e0da9665eb1d7ceffe1fde71f" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "0b38bc74487e73489624d61396af7805af9cc75f" },
|
||||
"nvim-tree.lua": { "branch": "master", "commit": "321bc61580fd066b76861c32de3319c3a6d089e7" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
|
||||
"nvim-treesitter-textobjects": { "branch": "master", "commit": "5ca4aaa6efdcc59be46b95a3e876300cfead05ef" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "6788013bb9cb784e606ada44206b0e755e4323d7" },
|
||||
"rainbow-delimiters.nvim": { "branch": "master", "commit": "8aafe2cbd89cd4090f573a98cab6b20366576fde" },
|
||||
"rose-pine": { "branch": "main", "commit": "cf2a288696b03d0934da713d66c6d71557b5c997" },
|
||||
"snacks.nvim": { "branch": "main", "commit": "fe7cfe9800a182274d0f868a74b7263b8c0c020b" },
|
||||
"toggleterm.nvim": { "branch": "main", "commit": "50ea089fc548917cc3cc16b46a8211833b9e3c7c" },
|
||||
|
|
|
|||
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