{ config , pkgs , ... }: { home.packages = with pkgs.nodePackages; [ vscode-css-languageserver-bin vscode-html-languageserver-bin csslint stylelint prettier ] ++ (with pkgs; [ 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 emmet-mode nginx-mode restclient scss-mode web-mode ]); programs.neovim.plugins = with pkgs.vimPlugins; [ coc-css coc-html ]; }