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

74 lines
1.5 KiB
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 14:00:51 +07:00
-- start custom lualine style
-- contoh style
-- {
-- { left = "│", right = "│" },
-- { left = " ", right = " " },
-- },
-- {
-- { left = " ", right = " " },
-- { left = " ", right = "" },
-- },
-- {
-- { left = " ", right = " " },
-- { left = "", right = "" },
-- },
-- {
-- { left = "", right = "" },
-- { left = "", right = "" },
-- },
-- {
-- { left = " ", right = " " },
-- { left = "", right = "" },
-- },
-- }
m.custom_lualine = false
m.component_separators = { left = " ", right = " " }
m.section_separators = { left = "", right = "" }
-- end custom lualine style
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
2023-03-04 19:42:21 +07:00
m.colorscheme = "gruvbox-baby"
2023-03-04 12:30:04 +07:00
-- custom transparent mode
2023-03-04 16:26:54 +07:00
-- only support
-- gruvbox-baby,
-- tokyonight,
-- sonokai,
-- material
-- onedark
-- catppuccin
2023-03-04 18:36:14 +07:00
-- nord
-- dracula
2023-03-04 12:30:04 +07:00
-- 0 =off 1= on
2023-03-04 16:26:54 +07:00
m.transparent_mode = 0
2023-03-03 19:15:17 +07:00
return m