This commit is contained in:
Anthony Cicchetti 2024-05-06 16:44:12 -04:00
parent 3fcc13db11
commit 532685d65e
4 changed files with 29 additions and 17 deletions

View file

@ -83,11 +83,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1714515075, "lastModified": 1714900398,
"narHash": "sha256-azMK7aWH0eUc3IqU4Fg5rwZdB9WZBvimOGG3piqvtsY=", "narHash": "sha256-H7XYHpjk1G6dkA3AnbYrKtaTFjcCE7ul6nUVlVQxtsA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "6d3b6dc9222c12b951169becdf4b0592ee9576ef", "rev": "fdaaf543bad047639ef0b356ea2e6caec2f1215c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -141,11 +141,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1714273701, "lastModified": 1714878592,
"narHash": "sha256-bmoeZ5zMSSO/e8P51yjrzaxA9uzA3SZAEFvih6S3LFo=", "narHash": "sha256-E68C03sYRsYFsK7wiGHUIJm8IsyPRALOrFoTL0glXnI=",
"owner": "Mic92", "owner": "Mic92",
"repo": "nix-index-database", "repo": "nix-index-database",
"rev": "941c4973c824509e0356be455d89613611f76c8a", "rev": "a362555e9dbd4ecff3bb98969bbdb8f79fe87f10",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -226,11 +226,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1714651394, "lastModified": 1714922915,
"narHash": "sha256-WMdK40HkHnq8BK29EX/JgrNGMZRMnHztfMtW8BNRy9M=", "narHash": "sha256-z90OXTwkN22RE+sM32SXWAU5u3GgSgaYp9YBw4GCIcQ=",
"owner": "nixOS", "owner": "nixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0a4529b1f1133f539d8718d495ad1aae94b6221d", "rev": "93e49991ad7027bf87a8ab505107c5018d62d7d9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -39,6 +39,7 @@ in {
gnutar gnutar
gql gql
imagemagick imagemagick
inshellisense
internetarchive internetarchive
jless jless
jq jq

View file

@ -90,4 +90,8 @@ in {
in in
{zj = "zellij -l welcome";} // platformSpecificAliases; {zj = "zellij -l welcome";} // platformSpecificAliases;
}; };
programs.carapace = {
enable = true;
enableZshIntegration = true;
};
} }

View file

@ -22,13 +22,18 @@ fi
fpath=(~/bin ~/.zshcompletions $fpath) fpath=(~/bin ~/.zshcompletions $fpath)
zstyle :compinstall filename '/home/anthonys/.zshrc' zstyle :compinstall filename '/home/anthonys/.zshrc'
zstyle ":completion:*" complete _complete _ignored _approximate _expand export CARAPACE_BRIDGES='zsh,fish,bash,inshellisense'
zstyle ":completion:*" glob 1 zstyle ':completion:*' format $'\e[2;37mCompleting %d\e[m'
zstyle ":completion:*" insert-unambiguous true # Both because it's nice and as an example
zstyle ':completion:*' menu select zstyle ':completion:*:git:*' group-order 'main commands' 'alias commands' 'external commands'
zstyle ':completion:*' rehash true
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'l:|=* r:|=*' # zstyle ":completion:*" complete _complete _ignored _approximate _expand
zstyle ":completion:*" substitute 1 # zstyle ":completion:*" glob 1
# zstyle ":completion:*" insert-unambiguous true
# zstyle ':completion:*' menu select
# zstyle ':completion:*' rehash true
# zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'l:|=* r:|=*'
# zstyle ":completion:*" substitute 1
[[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search [[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
[[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search [[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
@ -40,7 +45,9 @@ if [[ -d ~/.cargo/bin ]]; then
fi fi
function dt() { function dt() {
zellij -l welcome local session_name=${1:-DefaultSession}
zellij attach -c $session_name
} }
function root() { function root() {