diff options
Diffstat (limited to '.config/nvim')
| -rw-r--r-- | .config/nvim/init.lua | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index de56e0e..7b04b6a 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -17,7 +17,8 @@ vim.opt.shortmess:append "sI" -- packages vim.pack.add({ - { src = "https://github.com/sainnhe/everforest" }, + -- { src = "https://github.com/sainnhe/everforest" }, + { src = "https://github.com/rmehri01/onenord.nvim" }, { src = "https://github.com/mason-org/mason.nvim", }, { src = "https://github.com/nvim-lualine/lualine.nvim" }, { src = "https://github.com/lewis6991/gitsigns.nvim" }, @@ -165,5 +166,6 @@ vim.filetype.add({ }) -- theme -vim.g.everforest_transparent_background = true -vim.cmd("colorscheme everforest") +-- vim.g.everforest_transparent_background = true +-- vim.cmd("colorscheme everforest") +vim.cmd("colorscheme onenord") |