This commit is contained in:
Tyrel Souza 2023-11-08 16:59:32 -05:00
parent a217ba3176
commit 05b27b8658
No known key found for this signature in database
GPG Key ID: A7042C28F86F5183
3 changed files with 28 additions and 3 deletions

View File

@ -171,7 +171,5 @@ return require('packer').startup(function(use)
let g:vimspector_bottombar_height = 15
let g:vimspector_terminal_maxwidth = 70
]])
end)

View File

@ -106,4 +106,6 @@ return function(use)
refactor = { highlight_definitions = { enable = true } },
matchup = { enable = true },
})
end

25
home/wezterm.lua Normal file
View File

@ -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