🎨 Style Update
- Change gui font to Iosevka - Fix Kitty-theme function
This commit is contained in:
+10
-4
@@ -4,15 +4,21 @@
|
||||
|
||||
-- Set the palette
|
||||
if os.getenv("CATPPUCCIN_PALETTE") then
|
||||
TMEMEPALETTE = require("catppuccin.palettes").get_palette(os.getenv("CATPPUCCIN_PALETTE"))
|
||||
TMEMEPALETTE =
|
||||
require("catppuccin.palettes").get_palette(os.getenv("CATPPUCCIN_PALETTE"))
|
||||
end
|
||||
|
||||
if os.getenv("KITTY_THEME") then
|
||||
KITTY_THEME = os.getenv("KITTY_THEME")
|
||||
end
|
||||
|
||||
-- Apply the colorscheme
|
||||
vim.cmd.colorscheme(kitty_theme or "catppuccin-frappe")
|
||||
vim.cmd.colorscheme(KITTY_THEME or "catppuccin-frappe")
|
||||
|
||||
-- Set GUI font
|
||||
vim.opt.guifont = "MonaspiceKr Nerd Font Mono:#e-subpixelantialias:h13"
|
||||
--vim.opt.guifont = "MonaspiceKr Nerd Font Mono:#e-subpixelantialias:h13"
|
||||
vim.opt.guifont = "Iosevka:#e-subpixelantialias:h13"
|
||||
vim.g.have_nerd_font = true
|
||||
|
||||
-- Set transparency
|
||||
vim.cmd(":TransparentDisable")
|
||||
vim.cmd(":TransparentDisable")
|
||||
|
||||
Reference in New Issue
Block a user