diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-04-16 14:02:42 +0200 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-04-16 14:02:42 +0200 |
| commit | 27a6ae5923229c0c198242b7fe3ef47847867d34 (patch) | |
| tree | ca6d531dcc1c1c0ccfa3ec553c4635858acdc000 | |
| parent | refactor: remove unnecessary keybind, shorten vim opt (diff) | |
| download | nvim-27a6ae5923229c0c198242b7fe3ef47847867d34.tar.gz | |
feat: switch to Rosé Pine theme
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/init.lua | 4 | ||||
| -rw-r--r-- | lua/pml68/plugins.lua | 17 |
2 files changed, 14 insertions, 7 deletions
diff --git a/lua/pml68/init.lua b/lua/pml68/init.lua index e0acf9c..ea53600 100644 --- a/lua/pml68/init.lua +++ b/lua/pml68/init.lua @@ -1,8 +1,8 @@ require("pml68.remap") require("pml68.lazy") -vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) -vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) +-- vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) +-- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) vim.opt.rnu = true vim.opt.nu = true 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, |
