feat(theme)
This commit is contained in:
@ -1,9 +1,10 @@
|
|||||||
# MONITOR CONFIG
|
# MONITOR CONFIG
|
||||||
monitor=,preferred,auto,1
|
# FOR LAPTOP
|
||||||
|
# monitor=,preferred,auto,1
|
||||||
# monitor=,addreserved, 0, 0, 0, 0 # Custom reserved area
|
# monitor=,addreserved, 0, 0, 0, 0 # Custom reserved area
|
||||||
|
|
||||||
# HDMI port: mirror display. To see device name, use `hyprctl monitors`
|
# 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 {
|
input {
|
||||||
# Keyboard: Add a layout and uncomment kb_options for Win+Space switching shortcut
|
# Keyboard: Add a layout and uncomment kb_options for Win+Space switching shortcut
|
||||||
|
@ -47,8 +47,6 @@ vim.opt.rtp:prepend(lazypath)
|
|||||||
|
|
||||||
require("lazy").setup("plugins")
|
require("lazy").setup("plugins")
|
||||||
|
|
||||||
vim.cmd("colorscheme everblush")
|
|
||||||
|
|
||||||
-- Mappings
|
-- Mappings
|
||||||
|
|
||||||
-- Save --
|
-- Save --
|
||||||
|
@ -15,6 +15,17 @@ return {
|
|||||||
config = true,
|
config = true,
|
||||||
},
|
},
|
||||||
{ "Everblush/nvim", name = "everblush" },
|
{ "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/vim-vsnip" },
|
||||||
{ "hrsh7th/cmp-nvim-lsp" },
|
{ "hrsh7th/cmp-nvim-lsp" },
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user