nixpkgs-fmt

This commit is contained in:
fleaz 2022-02-07 00:01:27 +01:00
parent 6a9a43478c
commit 04091588ee
10 changed files with 185 additions and 169 deletions

View file

@ -1,10 +1,10 @@
{ pkgs, ... }: {
programs.vim = {
enable = true;
plugins = with pkgs.vimPlugins; [ vim-airline neoformat vim-monokai ];
settings = { ignorecase = true; };
extraConfig = ''
set mouse=a
'';
};
programs.vim = {
enable = true;
plugins = with pkgs.vimPlugins; [ vim-airline neoformat vim-monokai ];
settings = { ignorecase = true; };
extraConfig = ''
set mouse=a
'';
};
}

View file

@ -1,13 +1,13 @@
{ pkgs, ... }: {
programs.vscode = {
enable = true;
package = pkgs.vscodium; # You can skip this if you want to use the unfree version
extensions = with pkgs.vscode-extensions; [
dracula-theme.theme-dracula
vscodevim.vim
yzhang.markdown-all-in-one
ms-python.python
];
};
enable = true;
package = pkgs.vscodium; # You can skip this if you want to use the unfree version
extensions = with pkgs.vscode-extensions; [
dracula-theme.theme-dracula
vscodevim.vim
yzhang.markdown-all-in-one
ms-python.python
];
};
}