add ghostty and remove kitty
This commit is contained in:
parent
30f1b8b7d5
commit
a9abbb6786
26
ghostty/config/ghostty.conf
Normal file
26
ghostty/config/ghostty.conf
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
command = /Users/evanreichard/.nix-profile/bin/bash --login
|
||||||
|
macos-titlebar-style = tabs
|
||||||
|
auto-update = off
|
||||||
|
font-family = "MesloLGM Nerd Font Mono"
|
||||||
|
|
||||||
|
# Melange Dark - Adapted From: https://github.com/savq/melange-nvim/blob/master/term/kitty/melange_dark.conf
|
||||||
|
palette = 0=#34302C
|
||||||
|
palette = 1=#BD8183
|
||||||
|
palette = 2=#78997A
|
||||||
|
palette = 3=#E49B5D
|
||||||
|
palette = 4=#7F91B2
|
||||||
|
palette = 5=#B380B0
|
||||||
|
palette = 6=#7B9695
|
||||||
|
palette = 7=#C1A78E
|
||||||
|
palette = 8=#867462
|
||||||
|
palette = 9=#D47766
|
||||||
|
palette = 10=#85B695
|
||||||
|
palette = 11=#EBC06D
|
||||||
|
palette = 12=#A3A9CE
|
||||||
|
palette = 13=#CF9BC2
|
||||||
|
palette = 14=#89B3B6
|
||||||
|
palette = 15=#ECE1D7
|
||||||
|
background = 292522
|
||||||
|
foreground = ECE1D7
|
||||||
|
selection-background = 403A36
|
||||||
|
selection-foreground = ECE1D7
|
8
ghostty/default.nix
Normal file
8
ghostty/default.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
xdg.configFile = {
|
||||||
|
"ghostty/config" = {
|
||||||
|
source = ./config/ghostty.conf;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
57
home.nix
57
home.nix
@ -8,9 +8,9 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
./bash
|
./bash
|
||||||
./direnv
|
./direnv
|
||||||
|
./ghostty
|
||||||
./git
|
./git
|
||||||
./htop
|
./htop
|
||||||
./kitty
|
|
||||||
./neofetch
|
./neofetch
|
||||||
./nvim
|
./nvim
|
||||||
./powerline
|
./powerline
|
||||||
@ -20,7 +20,7 @@ in
|
|||||||
# Home Manager Config
|
# Home Manager Config
|
||||||
home.username = "evanreichard";
|
home.username = "evanreichard";
|
||||||
home.homeDirectory = "/Users/evanreichard";
|
home.homeDirectory = "/Users/evanreichard";
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.11";
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
# Global Packages
|
# Global Packages
|
||||||
@ -30,6 +30,7 @@ in
|
|||||||
awscli2
|
awscli2
|
||||||
bashInteractive
|
bashInteractive
|
||||||
cw
|
cw
|
||||||
|
# ghostty - Pending Darwin @ https://github.com/NixOS/nixpkgs/pull/369788
|
||||||
gitAndTools.gh
|
gitAndTools.gh
|
||||||
google-cloud-sdk
|
google-cloud-sdk
|
||||||
imagemagick
|
imagemagick
|
||||||
@ -40,12 +41,12 @@ in
|
|||||||
pre-commit
|
pre-commit
|
||||||
python311
|
python311
|
||||||
ssm-session-manager-plugin
|
ssm-session-manager-plugin
|
||||||
|
texliveSmall # Pandoc PDF Dep
|
||||||
thefuck
|
thefuck
|
||||||
tldr
|
tldr
|
||||||
texliveSmall # Pandoc PDF Dep
|
]
|
||||||
] ++ optionals isDarwin [
|
++ optionals isDarwin [ ]
|
||||||
kitty
|
++ optionals isLinux [ ];
|
||||||
] ++ optionals isLinux [ ];
|
|
||||||
|
|
||||||
# GitHub CLI
|
# GitHub CLI
|
||||||
programs.gh = {
|
programs.gh = {
|
||||||
@ -74,28 +75,28 @@ in
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
# Darwin Spotlight Indexing Hack
|
# Darwin Spotlight Indexing Hack
|
||||||
home.activation = mkIf isDarwin {
|
# home.activation = mkIf isDarwin {
|
||||||
copyApplications =
|
# copyApplications =
|
||||||
let
|
# let
|
||||||
apps = pkgs.buildEnv {
|
# apps = pkgs.buildEnv {
|
||||||
name = "home-manager-applications";
|
# name = "home-manager-applications";
|
||||||
paths = config.home.packages;
|
# paths = config.home.packages;
|
||||||
pathsToLink = "/Applications";
|
# pathsToLink = "/Applications";
|
||||||
};
|
# };
|
||||||
in
|
# in
|
||||||
lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
# lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
baseDir="$HOME/Applications/Home Manager Apps"
|
# baseDir="$HOME/Applications/Home Manager Apps"
|
||||||
if [ -d "$baseDir" ]; then
|
# if [ -d "$baseDir" ]; then
|
||||||
rm -rf "$baseDir"
|
# rm -rf "$baseDir"
|
||||||
fi
|
# fi
|
||||||
mkdir -p "$baseDir"
|
# mkdir -p "$baseDir"
|
||||||
for appFile in ${apps}/Applications/*; do
|
# for appFile in ${apps}/Applications/*; do
|
||||||
target="$baseDir/$(basename "$appFile")"
|
# target="$baseDir/$(basename "$appFile")"
|
||||||
$DRY_RUN_CMD cp ''${VERBOSE_ARG:+-v} -fHRL "$appFile" "$baseDir"
|
# $DRY_RUN_CMD cp ''${VERBOSE_ARG:+-v} -fHRL "$appFile" "$baseDir"
|
||||||
$DRY_RUN_CMD chmod ''${VERBOSE_ARG:+-v} -R +w "$target"
|
# $DRY_RUN_CMD chmod ''${VERBOSE_ARG:+-v} -R +w "$target"
|
||||||
done
|
# done
|
||||||
'';
|
# '';
|
||||||
};
|
# };
|
||||||
|
|
||||||
# Darwin Spotlight Indexing Hack
|
# Darwin Spotlight Indexing Hack
|
||||||
disabledModules = [ "targets/darwin/linkapps.nix" ];
|
disabledModules = [ "targets/darwin/linkapps.nix" ];
|
||||||
|
@ -1,132 +0,0 @@
|
|||||||
# -------------------------------------------------------
|
|
||||||
# ------------------ Generic Settings -------------------
|
|
||||||
# -------------------------------------------------------
|
|
||||||
|
|
||||||
font_family MesloLGM Nerd Font Mono
|
|
||||||
font_size 18.0
|
|
||||||
hide_window_decorations titlebar-only
|
|
||||||
shell /Users/evanreichard/.nix-profile/bin/bash --login
|
|
||||||
tab_bar_style powerline
|
|
||||||
|
|
||||||
# -------------------------------------------------------
|
|
||||||
# ----------------------- Hotkeys -----------------------
|
|
||||||
# -------------------------------------------------------
|
|
||||||
|
|
||||||
# Tab Switching
|
|
||||||
map cmd+, set_tab_title
|
|
||||||
map cmd+0 goto_tab 10
|
|
||||||
map cmd+1 goto_tab 1
|
|
||||||
map cmd+2 goto_tab 2
|
|
||||||
map cmd+3 goto_tab 3
|
|
||||||
map cmd+4 goto_tab 4
|
|
||||||
map cmd+5 goto_tab 5
|
|
||||||
map cmd+6 goto_tab 6
|
|
||||||
map cmd+7 goto_tab 7
|
|
||||||
map cmd+8 goto_tab 8
|
|
||||||
map cmd+9 goto_tab 9
|
|
||||||
|
|
||||||
# Window Switching
|
|
||||||
map alt+0 tenth_window
|
|
||||||
map alt+1 first_window
|
|
||||||
map alt+2 second_window
|
|
||||||
map alt+3 third_window
|
|
||||||
map alt+4 fourth_window
|
|
||||||
map alt+5 fifth_window
|
|
||||||
map alt+6 sixth_window
|
|
||||||
map alt+7 seventh_window
|
|
||||||
map alt+8 eighth_window
|
|
||||||
map alt+9 ninth_window
|
|
||||||
map shift+enter new_window_with_cwd
|
|
||||||
|
|
||||||
# Layout Specific Shortcuts
|
|
||||||
map alt+f toggle_layout stack
|
|
||||||
map alt+s toggle_layout horizontal
|
|
||||||
map alt+v toggle_layout vertical
|
|
||||||
|
|
||||||
# Active Window Relative Movement
|
|
||||||
map shift+down move_window down
|
|
||||||
map shift+left move_window left
|
|
||||||
map shift+right move_window right
|
|
||||||
map shift+up move_window up
|
|
||||||
|
|
||||||
# Focus Window Relative
|
|
||||||
map alt+down neighboring_window down
|
|
||||||
map alt+left neighboring_window left
|
|
||||||
map alt+right neighboring_window right
|
|
||||||
map alt+up neighboring_window up
|
|
||||||
|
|
||||||
# -------------------------------------------------------
|
|
||||||
# ----------------- 1984 Orwellian Theme ----------------
|
|
||||||
# -------------------------------------------------------
|
|
||||||
|
|
||||||
foreground #f1f1f1
|
|
||||||
background #2e2923
|
|
||||||
selection_foreground #000000
|
|
||||||
selection_background #3fc4ce
|
|
||||||
color0 #000000
|
|
||||||
color1 #e74946
|
|
||||||
color2 #4cb605
|
|
||||||
color3 #fcd395
|
|
||||||
color4 #356fe4
|
|
||||||
color5 #fcbe95
|
|
||||||
color6 #3fc4ce
|
|
||||||
color7 #f1f1f1
|
|
||||||
color8 #000000
|
|
||||||
color9 #e74946
|
|
||||||
color10 #4cb605
|
|
||||||
color11 #fcd395
|
|
||||||
color12 #356fe4
|
|
||||||
color13 #fcbe95
|
|
||||||
color14 #3fc4ce
|
|
||||||
color15 #f1f1f1
|
|
||||||
|
|
||||||
# URL styles
|
|
||||||
url_color #e74946
|
|
||||||
url_style single
|
|
||||||
|
|
||||||
# Cursor styles
|
|
||||||
cursor #3fc4ce
|
|
||||||
|
|
||||||
|
|
||||||
# -------------------------------------------------------
|
|
||||||
# ------------------ Nord Color Scheme ------------------
|
|
||||||
# -------------------------------------------------------
|
|
||||||
#
|
|
||||||
# foreground #D8DEE9
|
|
||||||
# background #2E3440
|
|
||||||
# selection_foreground #000000
|
|
||||||
# selection_background #FFFACD
|
|
||||||
# url_color #0087BD
|
|
||||||
# cursor #81A1C1
|
|
||||||
#
|
|
||||||
# # Black
|
|
||||||
# color0 #3B4252
|
|
||||||
# color8 #4C566A
|
|
||||||
#
|
|
||||||
# # Red
|
|
||||||
# color1 #BF616A
|
|
||||||
# color9 #BF616A
|
|
||||||
#
|
|
||||||
# # Green
|
|
||||||
# color2 #A3BE8C
|
|
||||||
# color10 #A3BE8C
|
|
||||||
#
|
|
||||||
# # Yellow
|
|
||||||
# color3 #EBCB8B
|
|
||||||
# color11 #EBCB8B
|
|
||||||
#
|
|
||||||
# # Blue
|
|
||||||
# color4 #81A1C1
|
|
||||||
# color12 #81A1C1
|
|
||||||
#
|
|
||||||
# # Magenta
|
|
||||||
# color5 #B48EAD
|
|
||||||
# color13 #B48EAD
|
|
||||||
#
|
|
||||||
# # Cyan
|
|
||||||
# color6 #88C0D0
|
|
||||||
# color14 #8FBCBB
|
|
||||||
#
|
|
||||||
# # White
|
|
||||||
# color7 #E5E9F0
|
|
||||||
# color15 #ECEFF4
|
|
@ -1,12 +0,0 @@
|
|||||||
{ config, pkgs, ... }:
|
|
||||||
let
|
|
||||||
inherit (pkgs.lib) mkIf;
|
|
||||||
inherit (pkgs.stdenv) isDarwin;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
xdg.configFile = mkIf isDarwin {
|
|
||||||
"kitty/kitty.conf" = {
|
|
||||||
source = ./config/kitty.conf;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -11,6 +11,7 @@ print_info() {
|
|||||||
info " " kernel
|
info " " kernel
|
||||||
info " " term
|
info " " term
|
||||||
info " " packages
|
info " " packages
|
||||||
|
info " " term_font
|
||||||
prin ""
|
prin ""
|
||||||
prin "Network Information"
|
prin "Network Information"
|
||||||
info " " public_ip
|
info " " public_ip
|
||||||
|
Loading…
x
Reference in New Issue
Block a user