mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
update style colorscheme dan lua line
This commit is contained in:
parent
3b058b47b6
commit
f37de64fce
6 changed files with 499 additions and 10 deletions
|
@ -12,7 +12,12 @@ return {
|
|||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
config = function()
|
||||
require("user.tokyonight")
|
||||
local is_transparant = true
|
||||
if is_transparant then
|
||||
require("user.tokyonight_transparant")
|
||||
else
|
||||
require("user.tokyonight")
|
||||
end
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
@ -80,7 +85,14 @@ return {
|
|||
dependencies = { "kyazdani42/nvim-web-devicons", opt = true },
|
||||
event = "BufWinEnter",
|
||||
opts = function()
|
||||
require("user.lualine")
|
||||
local model = 0
|
||||
if model == 1 then
|
||||
require("user.lualine1")
|
||||
elseif model == 2 then
|
||||
require("user.lualine2")
|
||||
else
|
||||
require("user.lualine")
|
||||
end
|
||||
end,
|
||||
},
|
||||
{ "rafamadriz/friendly-snippets" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue