add nushell
This commit is contained in:
parent
d03507a3fa
commit
43368d1e3a
8 changed files with 22 additions and 24 deletions
|
|
@ -6,10 +6,11 @@ input {
|
||||||
kb_rules =
|
kb_rules =
|
||||||
|
|
||||||
follow_mouse = 1
|
follow_mouse = 1
|
||||||
|
accel_profile = flat
|
||||||
|
|
||||||
touchpad {
|
touchpad {
|
||||||
natural_scroll = no
|
natural_scroll = no
|
||||||
}
|
}
|
||||||
|
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0.7 # -1.0 - 1.0, 0 means no modification.
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,5 @@ windowrulev2 = float, class:^(steam)$,title:^(Friends List)$
|
||||||
# Workspace assign
|
# Workspace assign
|
||||||
|
|
||||||
windowrulev2 = workspace: 1, class:^(kitty)$
|
windowrulev2 = workspace: 1, class:^(kitty)$
|
||||||
windowrulev2 = workspace: 2, class:^(firefox)$
|
windowrulev2 = workspace: 1, class:^(firefox)$
|
||||||
windowrulev2 = workspace: 5, class:^(steam)$
|
windowrulev2 = workspace: 5, class:^(steam)$
|
||||||
windowrulev2 = workspace: 10, class:^(org.telegram.desktop)$
|
|
||||||
windowrulev2 = workspace: 10, class:^(vesktop)$
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
include ~/.config/kitty/macchiato.conf
|
include ~/.config/kitty/macchiato.conf
|
||||||
font_family jetbrains mono nerd font
|
font_family CaskaydiaCove Nerd Font Mono
|
||||||
font_size 16
|
font_size 16
|
||||||
bold_font auto
|
bold_font auto
|
||||||
italic_font auto
|
italic_font auto
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,11 @@ in {
|
||||||
".config/btop".source = "${configDir}/btop";
|
".config/btop".source = "${configDir}/btop";
|
||||||
".config/wofi".source = "${configDir}/wofi";
|
".config/wofi".source = "${configDir}/wofi";
|
||||||
".config/mako".source = "${configDir}/mako";
|
".config/mako".source = "${configDir}/mako";
|
||||||
# ".config/starship.toml".source = "${configDir}/starship/starship.toml";
|
".config/starship.toml".source = "${configDir}/starship/starship.toml";
|
||||||
".config/macchiato.toml".source = "${configDir}/starship/macchiato.toml";
|
".config/macchiato.toml".source = "${configDir}/starship/macchiato.toml";
|
||||||
".config/nushell".source = "${configDir}/nushell";
|
".config/nushell" = {
|
||||||
|
source = "${configDir}/nushell";
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,5 +39,7 @@
|
||||||
pkgs.catppuccin-cursors.macchiatoBlue
|
pkgs.catppuccin-cursors.macchiatoBlue
|
||||||
pkgs.catppuccin-gtk
|
pkgs.catppuccin-gtk
|
||||||
# pkgs.papirus-folders
|
# pkgs.papirus-folders
|
||||||
|
|
||||||
|
pkgs.nushell
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,6 @@ in {
|
||||||
nushell = {
|
nushell = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAliases = myAliases;
|
shellAliases = myAliases;
|
||||||
# configFile.source = ../config/nushell/config.nu;
|
|
||||||
# envFile.source = ../config/nushell/env.nu;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
zsh = {
|
zsh = {
|
||||||
|
|
@ -29,18 +27,16 @@ in {
|
||||||
shellAliases = myAliases;
|
shellAliases = myAliases;
|
||||||
};
|
};
|
||||||
|
|
||||||
# carapace.enable = true;
|
carapace.enable = true;
|
||||||
# carapace.enableNushellIntegration = true;
|
carapace.enableNushellIntegration = true;
|
||||||
# starship = {
|
|
||||||
# enable = true;
|
starship = {
|
||||||
# settings = {
|
enable = true;
|
||||||
# add_newline = true;
|
};
|
||||||
# };
|
|
||||||
# };
|
zoxide = {
|
||||||
#
|
enable = true;
|
||||||
# zoxide = {
|
enableNushellIntegration = true;
|
||||||
# enable = true;
|
};
|
||||||
# enableNushellIntegration = true;
|
|
||||||
# };
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
hyprsunset
|
hyprsunset
|
||||||
hyprshade
|
|
||||||
hyprpaper
|
hyprpaper
|
||||||
hyprshot
|
hyprshot
|
||||||
kitty
|
kitty
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,6 @@
|
||||||
|
|
||||||
# Shell
|
# Shell
|
||||||
zoxide # Dir jumper
|
zoxide # Dir jumper
|
||||||
nushell # Shell
|
|
||||||
starship # Shell theme
|
starship # Shell theme
|
||||||
carapace # Autocomplete
|
carapace # Autocomplete
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue