diff options
| author | awy <awy@awy.one> | 2025-11-02 20:36:35 +0300 | 
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-02 20:36:35 +0300 | 
| commit | a72c7536580145161b838cc58b80ef70927ba33a (patch) | |
| tree | fe666332e632b496c0b6add3276259ec02cf8f23 /.config/nvim/init.lua | |
| parent | 80582415fa6436d854895e413ab8815cdbe0bb1c (diff) | |
| download | hyprdots-a72c7536580145161b838cc58b80ef70927ba33a.tar.gz | |
nord
Diffstat (limited to '.config/nvim/init.lua')
| -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")  |