Update tokyonight theme configuration

This commit is contained in:
Saeed Afzal
2023-02-06 22:20:45 +00:00
parent cb7a400557
commit 1d891abbd3
3 changed files with 17 additions and 4 deletions

View File

@@ -49,4 +49,4 @@ require("catppuccin").setup {
} }
} }
vim.cmd [[colorscheme catppuccin]] -- vim.cmd [[colorscheme catppuccin]]

View File

@@ -1,7 +1,7 @@
require("lualine").setup { require("lualine").setup {
options = { options = {
theme = "catppuccin" -- theme = "catppuccin"
-- theme = "tokyonight" theme = "tokyonight"
}, },
extensions = { extensions = {

View File

@@ -1,6 +1,19 @@
require("tokyonight").setup { require("tokyonight").setup {
style = "night", style = "night",
terminal_colors = true,
styles = {
conditionals = { italic = true, bold = true },
loops = { italic = true, bold = true },
functions = { italic = true, bold = true },
keywords = { italic = true, bold = true },
strings = { bold = true },
variables = { bold = true },
numbers = { bold = true },
booleans = { bold = true },
properties = { italic = true },
types = { italic = true, bold = true }
},
lualine_bold = true lualine_bold = true
} }
-- vim.cmd [[colorscheme tokyonight]] vim.cmd [[colorscheme tokyonight]]