pojokcodeid.nvim-lazy/lua/custom/ui.lua

39 lines
750 B
Lua
Raw Normal View History

2023-03-03 19:15:17 +07:00
local m = {}
-- 0 disable progress
-- 1 lualine lsp progress
-- 2 fidget progress
m.progress = 1
2023-03-04 09:44:58 +07:00
-- style
-- 0 = default
-- 1 = { left = "", right = "" },
-- 2 = { left = " ", right = " " },
-- 3 = { left = "", right = "" },
m.lualine_style = 0
-- style status icon
-- 0 = default
-- 1 = vim icon " "
-- 2 = vim icon " "
m.status_icon = 0
2023-03-04 11:53:44 +07:00
-- custom colorscheme
-- colorscheme ready :
-- tokyonight
-- tokyonight-night
-- tokyonight-storm
-- tokyonight-day
-- tokyonight-moon
-- gruvbox-baby (default)
-- sonokai
-- material
-- onedark
-- lunar
-- nord
-- catppuccin
-- dracula
m.colorscheme = "gruvbox-baby"
2023-03-04 12:30:04 +07:00
-- custom transparent mode
-- support gruvbox-baby dan tokyonight
-- 0 =off 1= on
m.transparent_mode = 0
2023-03-03 19:15:17 +07:00
return m