Compare commits
3 commits
58afdf8491
...
b3ebdb1e09
| Author | SHA1 | Date | |
|---|---|---|---|
| b3ebdb1e09 | |||
| 0ae3ffa00a | |||
| f920a4b878 |
2 changed files with 38 additions and 10 deletions
|
|
@ -23,15 +23,37 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".config/ghostty/config" = {
|
home.file.".config/ghostty/config".text = ''
|
||||||
text = ''
|
|
||||||
font-family = "Maple Mono NF"
|
font-family = "Maple Mono NF"
|
||||||
font-size = 16
|
font-size = 16
|
||||||
theme = "catppuccin-mocha"
|
theme = "catppuccin-mocha"
|
||||||
confirm-close-surface = false
|
confirm-close-surface = false
|
||||||
link-url = true
|
link-url = true
|
||||||
'';
|
'';
|
||||||
};
|
home.file.".config/ghostty/themes/catppuccin-mocha".text = ''
|
||||||
|
palette = 0=#45475a
|
||||||
|
palette = 1=#f38ba8
|
||||||
|
palette = 2=#a6e3a1
|
||||||
|
palette = 3=#f9e2af
|
||||||
|
palette = 4=#89b4fa
|
||||||
|
palette = 5=#f5c2e7
|
||||||
|
palette = 6=#94e2d5
|
||||||
|
palette = 7=#a6adc8
|
||||||
|
palette = 8=#585b70
|
||||||
|
palette = 9=#f38ba8
|
||||||
|
palette = 10=#a6e3a1
|
||||||
|
palette = 11=#f9e2af
|
||||||
|
palette = 12=#89b4fa
|
||||||
|
palette = 13=#f5c2e7
|
||||||
|
palette = 14=#94e2d5
|
||||||
|
palette = 15=#bac2de
|
||||||
|
background = 1e1e2e
|
||||||
|
foreground = cdd6f4
|
||||||
|
cursor-color = f5e0dc
|
||||||
|
cursor-text = 1e1e2e
|
||||||
|
selection-background = 353749
|
||||||
|
selection-foreground = cdd6f4
|
||||||
|
'';
|
||||||
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -224,6 +246,7 @@
|
||||||
tug = ["bookmark" "move" "--from" "closest_bookmark(@-)" "--to" "@-"];
|
tug = ["bookmark" "move" "--from" "closest_bookmark(@-)" "--to" "@-"];
|
||||||
catchup = ["rebase" "-b" "current" "-d" "trunk()" "--skip-emptied"];
|
catchup = ["rebase" "-b" "current" "-d" "trunk()" "--skip-emptied"];
|
||||||
changed = ["diff" "--files-only"];
|
changed = ["diff" "--files-only"];
|
||||||
|
init = ["git" "init"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -180,7 +180,12 @@
|
||||||
plugins.lsp = {
|
plugins.lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
elixirls.enable = true;
|
elixirls = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
dialyzerEnabled = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
fish_lsp.enable = true;
|
fish_lsp.enable = true;
|
||||||
html.enable = true;
|
html.enable = true;
|
||||||
nixd.enable = true;
|
nixd.enable = true;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue