added tailwindcss and neorg plugins

This commit is contained in:
AramMarkarov
2025-04-27 18:16:01 +02:00
parent 9e53ed6666
commit 25a269ed07
12 changed files with 69 additions and 70 deletions
+3 -7
View File
@@ -12,16 +12,12 @@ vim.filetype.add({
}
})
if time >= 10 and time < 16 then
if time >= 8 and time < 20 then
vim.o.background = "light"
vim.cmd[[colorscheme one_light]]
vim.cmd[[colorscheme rose-pine-dawn]]
else
vim.o.background = "dark"
vim.cmd[[colorscheme gruvbox]]
vim.cmd[[colorscheme rose-pine-moon]]
end
local bg_color = vim.api.nvim_get_hl_by_name('Normal', true).background
vim.api.nvim_set_hl(0, 'WinSeparator', { fg = vim.api.nvim_get_hl_by_name('NvimTreeEndOfBuffer', true).foreground, bg = 'NONE' })
vim.api.nvim_set_hl(0, 'NvimTreeWinSeparator', { fg = bg_color, bg = 'NONE' })
vim.api.nvim_set_hl(0, 'NvimTreeCursorLine', { bg = vim.api.nvim_get_hl_by_name('CursorLine', true).background })