diff options
author | Alan Pearce | 2024-04-24 18:52:47 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-24 18:52:47 +0200 |
commit | 2276c22e9582f80127b497de16fe115a90263771 (patch) | |
tree | 51a8196831fe46b7e97fdb1dca27743064104295 /user | |
parent | 46cb3422934aa93d3e7864cbb14bc1fde58ed91f (diff) | |
download | nixfiles-2276c22e9582f80127b497de16fe115a90263771.tar.lz nixfiles-2276c22e9582f80127b497de16fe115a90263771.tar.zst nixfiles-2276c22e9582f80127b497de16fe115a90263771.zip |
dev/web: alias fly to flyctl for completion
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/development/web.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/user/settings/development/web.nix b/user/settings/development/web.nix index b617898c..7570cadb 100644 --- a/user/settings/development/web.nix +++ b/user/settings/development/web.nix @@ -12,6 +12,10 @@ flyctl self.htmlformat ]); + home.shellAliases = { + # 0.2.25 current completion command only affects `flyctl`, although `fly` is a link to `flyctl` + fly = "flyctl"; + }; programs.emacs.extraPackages = epkgs: (with epkgs; [ caddyfile-mode company-web |