From 00749e3be7793866dcc1e5c2a4d737dd9c365335 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 4 Oct 2023 08:27:35 -0400 Subject: [PATCH] Some updates to wezterm and nvim theme --- nvim/m-housh/lua/user/plugin/theme.lua | 9 ++------- nvim/m-housh/lua/user/theme.lua | 4 +--- wezterm/wezterm.lua | 4 +++- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/nvim/m-housh/lua/user/plugin/theme.lua b/nvim/m-housh/lua/user/plugin/theme.lua index b51c4d6..19ec090 100644 --- a/nvim/m-housh/lua/user/plugin/theme.lua +++ b/nvim/m-housh/lua/user/plugin/theme.lua @@ -3,7 +3,7 @@ return { lazy = false, -- make sure we load this during startup priority = 1000, -- make sure to load this before all other plugins. opts = { - fox = "nightfox", -- change the colorscheme to use terafox + --fox = "terafox", -- change the colorscheme to use terafox styles = { comments = "italic", -- change style of comments to be italic keywords = "bold", -- change style of keywords to be bold @@ -13,17 +13,12 @@ return { match_paren = true, -- inverse the highlighting of match_parens }, colors = { - red = "#FF000", -- Override the red color for MAX POWER + red = "#FF0000", -- Override the red color for MAX POWER --bg_alt = "#000000", }, hlgroups = { TSPunctDelimiter = { fg = "${red}" }, -- Override a highlight group with the color red LspCodeLens = { bg = "#000000", style = "italic" }, } - }, - config = function() - require('nightfox').load() - vim.cmd("colorscheme terafox") - end } diff --git a/nvim/m-housh/lua/user/theme.lua b/nvim/m-housh/lua/user/theme.lua index 8c04653..766c2b9 100644 --- a/nvim/m-housh/lua/user/theme.lua +++ b/nvim/m-housh/lua/user/theme.lua @@ -1,5 +1,3 @@ -- Nightfox -require('nightfox').load('terafox') ---require('nightfox').load('terafox') ---vim.cmd("colorscheme nightfox") +require('nightfox').load('terrafox') diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index 6518b91..f8117eb 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -16,6 +16,7 @@ config.font = wezterm.font_with_fallback { config.font_size = 16.0 -- Window +config.adjust_window_size_when_changing_font_size = false config.enable_scroll_bar = false config.window_padding = { left = 0, @@ -24,12 +25,13 @@ config.window_padding = { bottom = 0 } config.window_close_confirmation = 'NeverPrompt' -config.window_decorations = 'TITLE' +--config.window_decorations = 'TITLE' -- Tab Bar config.show_tabs_in_tab_bar = true config.show_new_tab_button_in_tab_bar = false config.use_fancy_tab_bar = true config.tab_bar_at_bottom = true +config.hide_tab_bar_if_only_one_tab = true return config