-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make nvim config play a bit better with firenvim
- Loading branch information
Showing
4 changed files
with
24 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
local wezterm = require("wezterm") | ||
|
||
local config = {} | ||
local function get_config() | ||
local config = {} | ||
if wezterm.config_builder then | ||
config = wezterm.config_builder() | ||
end | ||
-- font settings | ||
config.font = wezterm.font("SpaceMono Nerd Font") | ||
config.font_size = 13.5 | ||
-- disable ligatures -> | ||
config.harfbuzz_features = { "calt=0", "clig=0", "liga=0" } | ||
|
||
if wezterm.config_builder then | ||
config = wezterm.config_builder() | ||
end | ||
config.term = "wezterm" | ||
|
||
-- font settings | ||
config.font = wezterm.font("SpaceMono Nerd Font") | ||
config.font_size = 14.0 | ||
-- disable ligatures -> | ||
config.harfbuzz_features = { "calt=0", "clig=0", "liga=0" } | ||
-- set theme | ||
config.color_scheme = "Catppuccin Mocha" | ||
|
||
config.term = "wezterm" | ||
config.hide_tab_bar_if_only_one_tab = true | ||
|
||
-- set theme | ||
config.color_scheme = "Catppuccin Mocha" | ||
return config | ||
end | ||
|
||
return config | ||
return get_config() |