From 05b27b8658c327f94456c61209ec899b51955937 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Wed, 8 Nov 2023 16:59:32 -0500 Subject: [PATCH] wezterm --- home/config/nvim/init.lua | 4 +--- home/config/nvim/lua/plugins.lua | 2 ++ home/wezterm.lua | 25 +++++++++++++++++++++++++ 3 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 home/wezterm.lua diff --git a/home/config/nvim/init.lua b/home/config/nvim/init.lua index 5f2008e..f7faadd 100644 --- a/home/config/nvim/init.lua +++ b/home/config/nvim/init.lua @@ -171,7 +171,5 @@ return require('packer').startup(function(use) let g:vimspector_bottombar_height = 15 let g:vimspector_terminal_maxwidth = 70 ]]) - - - end) + diff --git a/home/config/nvim/lua/plugins.lua b/home/config/nvim/lua/plugins.lua index bc72139..c320d14 100644 --- a/home/config/nvim/lua/plugins.lua +++ b/home/config/nvim/lua/plugins.lua @@ -106,4 +106,6 @@ return function(use) refactor = { highlight_definitions = { enable = true } }, matchup = { enable = true }, }) + + end diff --git a/home/wezterm.lua b/home/wezterm.lua new file mode 100644 index 0000000..d2ae864 --- /dev/null +++ b/home/wezterm.lua @@ -0,0 +1,25 @@ +local wezterm = require 'wezterm' + +-- This table will hold the configuration. +local config = {} + +-- In newer versions of wezterm, use the config_builder which will +-- help provide clearer error messages +if wezterm.config_builder then + config = wezterm.config_builder() +end + +-- This is where you actually apply your config choices + +-- For example, changing the color scheme: +config.color_scheme = 'Jellybeans (Gogh)' +config.font = wezterm.font_with_fallback { + 'IosevkaTerm Nerd Font', +} +config.font_size = 13 +config.hide_tab_bar_if_only_one_tab = true + + +-- and finally, return the configuration to wezterm +return config +