summary refs log tree commit diff stats
path: root/user/settings/development/web.nix
blob: caae48adc406d2ea871e8d9a87ea0398d8c2ff00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ config
, pkgs
, ...
}: {
  home.packages = with pkgs.nodePackages; [
    vscode-css-languageserver-bin
    vscode-html-languageserver-bin
    csslint
    stylelint
  ] ++ (with pkgs; [
    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
  ];
}