support config color scheme

This commit is contained in:
asep komarudin 2023-03-05 10:49:03 +07:00
parent ee7e49f922
commit b6f0601d3d
5 changed files with 181 additions and 42 deletions

View file

@ -67,24 +67,9 @@ return {
require("user.neoscroll")
end,
},
-- { "ahmedkhalf/project.nvim", commit = "628de7e433dd503e782831fe150bb750e56e55d6", event = "VeryLazy" }, -- {
-- "linrongbin16/lsp-progress.nvim",
-- branch = "main",
-- event = { "VimEnter" },
-- config = function()
-- require("lsp-progress").setup({
-- format = function(client_messages)
-- local sign = "" -- nf-fa-gear \uf013
-- return #client_messages > 0 and (sign .. " " .. table.concat(client_messages, " ")) or sign
-- end,
-- })
-- end,
-- -- },
-- { "arkav/lualine-lsp-progress", event = "BufRead" },
-- { "j-hui/fidget.nvim", enabled = false },
--
-- { "ahmedkhalf/project.nvim", commit = "628de7e433dd503e782831fe150bb750e56e55d6", event = "VeryLazy" }, --
-- additional plugins
-- active indent guide and indent text objects
-- makes some plugins dot-repeatable like leap
-- { "tpope/vim-repeat", event = "VeryLazy" },
-- better diagnostics list and others
@ -120,18 +105,6 @@ return {
-- require("user.indent-o-matic")
-- end,
-- },
-- Lsp Saga
-- {
-- "glepnir/lspsaga.nvim",
-- event = "BufRead",
-- config = function()
-- require("lspsaga").setup({})
-- end,
-- dependencies = { { "kyazdani42/nvim-web-devicons" } },
-- init = function()
-- require("user.lspsaga_config")
-- end,
-- },
-- Khusus Projek laravel baru di buka
-- {
-- "adalessa/laravel.nvim",

View file

@ -44,19 +44,18 @@ m.section_separators = { left = "", right = " " }
-- custom colorscheme
-- colorscheme ready :
-- tokyonight
-- tokyonight-night
-- tokyonight-storm
-- tokyonight-day
-- tokyonight-moon
-- tokyonight, tokyonight-night, tokyonight-storm, tokyonight-day, tokyonight-moon
-- gruvbox-baby (default)
-- sonokai
-- material
-- onedark
-- 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
-- lunar
-- nord
-- catppuccin
-- catppuccin, catppuccin-latte, catppuccin-frappe, catppuccin-macchiato, catppuccin-mocha
-- dracula
-- nightfox, dayfox, dawnfox, duskfox, nordfox, terafox, carbonfox
m.colorscheme = "gruvbox-baby"
-- custom transparent mode
-- only support
@ -68,6 +67,7 @@ m.colorscheme = "gruvbox-baby"
-- catppuccin
-- nord
-- dracula
-- nightfox
-- 0 =off 1= on
m.transparent_mode = 0
return m