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

74 lines
1.9 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 :
2023-03-05 10:49:03 +07:00
-- tokyonight, tokyonight-night, tokyonight-storm, tokyonight-day, tokyonight-moon
2023-03-04 11:53:44 +07:00
-- gruvbox-baby (default)
2023-03-05 10:49:03 +07:00
-- sonokai, sonokai_atlantis,
-- sonokai_andromeda,sonokai_shusia,sonokai_maia,sonokai_espresso
-- material, material_deepocean, material_palenight, material_lighter, material_darker
-- onedark, onedark_darker, onedark_cool, onedark_deep,onedark_warm,
-- onedark_warmer, onedark_light
2023-03-04 11:53:44 +07:00
-- lunar
-- nord
2023-03-05 10:49:03 +07:00
-- catppuccin, catppuccin-latte, catppuccin-frappe, catppuccin-macchiato, catppuccin-mocha
2023-03-04 11:53:44 +07:00
-- dracula
2023-03-05 10:49:03 +07:00
-- nightfox, dayfox, dawnfox, duskfox, nordfox, terafox, carbonfox
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-05 10:49:03 +07:00
-- nightfox
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