feat(theme)

This commit is contained in:
2024-10-10 10:58:56 +01:00
parent ae67602ff0
commit 3517f3385a
3 changed files with 14 additions and 4 deletions

View File

@ -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

View File

@ -47,8 +47,6 @@ vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugins")
vim.cmd("colorscheme everblush")
-- Mappings
-- Save --

View File

@ -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" },
{