Compare commits

...

3 Commits

Author SHA1 Message Date
Noah Masur
7bd2125438 fix: actually use exa for ls 2022-10-30 20:43:49 -04:00
Noah Masur
0448037a6b set kitty tab style to slant 2022-10-30 20:43:34 -04:00
Noah Masur
7075371b11 remove warning about dirty git tree 2022-10-30 20:42:32 -04:00
3 changed files with 9 additions and 3 deletions

View File

@ -65,7 +65,10 @@
in { in {
# Enable features in Nix commands # Enable features in Nix commands
nix.extraOptions = "experimental-features = nix-command flakes"; nix.extraOptions = ''
experimental-features = nix-command flakes
warn-dirty = false
'';
# Basic common system packages for all devices # Basic common system packages for all devices
environment.systemPackages = with pkgs; [ git vim wget curl ]; environment.systemPackages = with pkgs; [ git vim wget curl ];

View File

@ -65,6 +65,9 @@
# Window # Window
window_padding_width = 4; window_padding_width = 4;
tab_bar_edge = "top";
tab_bar_style = "slant";
# macos_traditional_fullscreen = true; # macos_traditional_fullscreen = true;
}; };
}; };

View File

@ -7,10 +7,11 @@
home-manager.users.${config.user} = { home-manager.users.${config.user} = {
# Packages used in abbreviations and aliases # Packages used in abbreviations and aliases
home.packages = with pkgs; [ curl ]; home.packages = with pkgs; [ curl exa ];
programs.fish = { programs.fish = {
enable = true; enable = true;
shellAliases = { ls = "exa"; };
functions = { functions = {
commandline-git-commits = { commandline-git-commits = {
description = "Insert commit into commandline"; description = "Insert commit into commandline";
@ -41,7 +42,6 @@
description = "Tidy up JSON using jq"; description = "Tidy up JSON using jq";
body = "pbpaste | jq '.' | pbcopy"; # Need to fix for non-macOS body = "pbpaste | jq '.' | pbcopy"; # Need to fix for non-macOS
}; };
ls = { body = "${pkgs.exa}/bin/exa $argv"; };
note = { note = {
description = "Edit or create a note"; description = "Edit or create a note";
argumentNames = "filename"; argumentNames = "filename";