feat: update colors of Neovim, Lualine and Tmux to match Tokyo Night

This commit is contained in:
Stefan Imhoff
2022-12-22 15:51:08 +01:00
parent a41fc1ce91
commit 321cc71b36
3 changed files with 26 additions and 12 deletions

View File

@@ -1,10 +1,20 @@
-- https://github.com/nvim-lualine/lualine.nvim
local theme = require("lualine.themes.auto")
theme.normal.c.bg = "#1F2335"
theme.normal.b.bg = "#24283B"
theme.insert.b.bg = "#24283B"
theme.visual.b.bg = "#24283B"
theme.replace.b.bg = "#24283B"
theme.command.b.bg = "#24283B"
theme.inactive.b.bg = "#24283B"
require("lualine").setup({
options = {
icons_enabled = true,
theme = "tokyonight",
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
theme = theme,
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
disabled_filetypes = { "alpha", "dashboard", "NvimTree", "Outline " },
always_divide_middle = true,
globalstatus = true,

View File

@@ -13,5 +13,5 @@ vim.cmd([[
silent! colorscheme tokyonight-night
highlight ColorColumn guibg=#202224
highlight SpellBad guifg=red
highlight Winseparator guifg=#444444 guibg=None
highlight Winseparator guifg=#1F2335 guibg=None
]])