wezterm
This commit is contained in:
parent
a217ba3176
commit
05b27b8658
@ -171,7 +171,5 @@ return require('packer').startup(function(use)
|
|||||||
let g:vimspector_bottombar_height = 15
|
let g:vimspector_bottombar_height = 15
|
||||||
let g:vimspector_terminal_maxwidth = 70
|
let g:vimspector_terminal_maxwidth = 70
|
||||||
]])
|
]])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
@ -106,4 +106,6 @@ return function(use)
|
|||||||
refactor = { highlight_definitions = { enable = true } },
|
refactor = { highlight_definitions = { enable = true } },
|
||||||
matchup = { enable = true },
|
matchup = { enable = true },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
25
home/wezterm.lua
Normal file
25
home/wezterm.lua
Normal 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user