aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins.lua
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-04-16 14:02:42 +0200
committerpml68 <tutorialmester@gmail.com>2024-04-16 14:02:42 +0200
commit27a6ae5923229c0c198242b7fe3ef47847867d34 (patch)
treeca6d531dcc1c1c0ccfa3ec553c4635858acdc000 /lua/pml68/plugins.lua
parentrefactor: remove unnecessary keybind, shorten vim opt (diff)
downloadnvim-27a6ae5923229c0c198242b7fe3ef47847867d34.tar.gz
feat: switch to Rosé Pine theme
Diffstat (limited to '')
-rw-r--r--lua/pml68/plugins.lua17
1 files changed, 12 insertions, 5 deletions
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index 2c2e843..5c914fb 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -143,11 +143,17 @@ local plugins = {
},
-- Color scheme
{
- "drewtempelmeyer/palenight.vim",
- config = function()
- vim.cmd("colorscheme palenight")
- end
- },
+ "rose-pine/neovim",
+ name = "rose-pine",
+ config = function ()
+ require("rose-pine").setup({
+ styles = {
+ transparency = true
+ }
+ })
+ vim.cmd("colorscheme rose-pine")
+ end
+ },
-- Syntax highlighting
{
"nvim-treesitter/nvim-treesitter",
@@ -322,6 +328,7 @@ local plugins = {
end)
end
},
+ -- LaTeX
{
"lervag/vimtex",
lazy = false,