diff --git a/hypr/hyprland/general.conf b/hypr/hyprland/general.conf index e6cb9d39..613f380e 100644 --- a/hypr/hyprland/general.conf +++ b/hypr/hyprland/general.conf @@ -1,9 +1,10 @@ # MONITOR CONFIG -monitor=,preferred,auto,1 +# FOR LAPTOP +# monitor=,preferred,auto,1 # monitor=,addreserved, 0, 0, 0, 0 # Custom reserved area # HDMI port: mirror display. To see device name, use `hyprctl monitors` -# monitor=HDMI-A-1,2560x1440@144,1920x0,1,mirror,eDP-1 +monitor=HDMI-A-1,2560x1440@144,1920x0,1,mirror,eDP-1 input { # Keyboard: Add a layout and uncomment kb_options for Win+Space switching shortcut diff --git a/nvim/init.lua b/nvim/init.lua index e22027e4..76f5a76b 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -47,8 +47,6 @@ vim.opt.rtp:prepend(lazypath) require("lazy").setup("plugins") -vim.cmd("colorscheme everblush") - -- Mappings -- Save -- diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua index 92b14ac2..0d905720 100644 --- a/nvim/lua/plugins/init.lua +++ b/nvim/lua/plugins/init.lua @@ -15,6 +15,17 @@ return { config = true, }, { "Everblush/nvim", name = "everblush" }, + { + "sainnhe/gruvbox-material", + lazy = false, + config = function() + -- Optionally configure and load the colorscheme + -- directly inside the plugin declaration. + vim.g.gruvbox_material_enable_italic = true + vim.g.gruvbox_material_background = "medium" + vim.cmd.colorscheme("gruvbox-material") + end, + }, { "hrsh7th/vim-vsnip" }, { "hrsh7th/cmp-nvim-lsp" }, {