mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 19:20:32 +01:00
theming
This commit is contained in:
parent
bb828450c9
commit
2047c27073
|
@ -11,7 +11,7 @@ end
|
||||||
|
|
||||||
local HOSTNAME = getHostname()
|
local HOSTNAME = getHostname()
|
||||||
|
|
||||||
config.color_scheme = "Catppuccin Mocha"
|
config.color_scheme = "Apathy"
|
||||||
-- config.font = wezterm.font 'Hack Nerd Font Mono'
|
-- config.font = wezterm.font 'Hack Nerd Font Mono'
|
||||||
config.font = wezterm.font 'ComicShannsMono Nerd Font Mono'
|
config.font = wezterm.font 'ComicShannsMono Nerd Font Mono'
|
||||||
if getHostname() == "lilith" or getHostname() == "alastor" then
|
if getHostname() == "lilith" or getHostname() == "alastor" then
|
||||||
|
@ -70,28 +70,28 @@ config.keys = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key = "LeftArrow",
|
key = "h",
|
||||||
mods = 'CTRL | SHIFT',
|
mods = 'CTRL | SHIFT',
|
||||||
action = wezterm.action.SplitPane {
|
action = wezterm.action.SplitPane {
|
||||||
direction = 'Left',
|
direction = 'Left',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key = "RightArrow",
|
key = "l",
|
||||||
mods = 'CTRL | SHIFT',
|
mods = 'CTRL | SHIFT',
|
||||||
action = wezterm.action.SplitPane {
|
action = wezterm.action.SplitPane {
|
||||||
direction = 'Right',
|
direction = 'Right',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key = "UpArrow",
|
key = "k",
|
||||||
mods = 'CTRL | SHIFT',
|
mods = 'CTRL | SHIFT',
|
||||||
action = wezterm.action.SplitPane {
|
action = wezterm.action.SplitPane {
|
||||||
direction = 'Up',
|
direction = 'Up',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key = "DownArrow",
|
key = "j",
|
||||||
mods = 'CTRL | SHIFT',
|
mods = 'CTRL | SHIFT',
|
||||||
action = wezterm.action.SplitPane {
|
action = wezterm.action.SplitPane {
|
||||||
direction = 'Down',
|
direction = 'Down',
|
||||||
|
|
|
@ -15,10 +15,12 @@ in {
|
||||||
yubioath-flutter
|
yubioath-flutter
|
||||||
steam
|
steam
|
||||||
heroic
|
heroic
|
||||||
|
mpv
|
||||||
protonup-qt
|
protonup-qt
|
||||||
via
|
via
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
jetbrains.rust-rover
|
jetbrains.rust-rover
|
||||||
|
tor-browser
|
||||||
tutanota-desktop
|
tutanota-desktop
|
||||||
bitwarden-desktop
|
bitwarden-desktop
|
||||||
bottles
|
bottles
|
||||||
|
@ -41,6 +43,7 @@ in {
|
||||||
qmk-udev-rules
|
qmk-udev-rules
|
||||||
jellyfin-media-player
|
jellyfin-media-player
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
kleopatra
|
||||||
# ida-free
|
# ida-free
|
||||||
# spotify
|
# spotify
|
||||||
]))
|
]))
|
||||||
|
@ -75,10 +78,6 @@ in {
|
||||||
|
|
||||||
openvpn
|
openvpn
|
||||||
|
|
||||||
tor-browser
|
|
||||||
|
|
||||||
kleopatra
|
|
||||||
|
|
||||||
moodle-dl
|
moodle-dl
|
||||||
|
|
||||||
obsidian
|
obsidian
|
||||||
|
@ -119,7 +118,6 @@ in {
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
||||||
sayonara
|
sayonara
|
||||||
mpv
|
|
||||||
feishin
|
feishin
|
||||||
|
|
||||||
nix-tree
|
nix-tree
|
||||||
|
|
|
@ -27,7 +27,14 @@
|
||||||
shiftwidth = 2; # Tab width should be 2
|
shiftwidth = 2; # Tab width should be 2
|
||||||
};
|
};
|
||||||
|
|
||||||
colorschemes.catppuccin.enable = true;
|
# colorschemes.catppuccin.enable = true;
|
||||||
|
colorschemes.base16 = {
|
||||||
|
enable = true;
|
||||||
|
colorscheme = "apathy";
|
||||||
|
settings = {
|
||||||
|
telescope_borders = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
plugins = {
|
plugins = {
|
||||||
lspkind.enable = true;
|
lspkind.enable = true;
|
||||||
persistence = {
|
persistence = {
|
||||||
|
|
Loading…
Reference in a new issue