nixos-config/home/editors/default.nix

32 lines
486 B
Nix
Raw Permalink Normal View History

2020-03-12 15:41:24 +01:00
{ config, pkgs, ... }:
{
2024-05-26 16:45:38 +02:00
imports = [
./lsp.nix
./dap.nix
./helix
./neovim
];
2020-03-12 15:41:24 +01:00
2024-05-26 16:45:38 +02:00
home.packages = with pkgs; [
fzf
ripgrep
];
2020-03-12 15:41:24 +01:00
home.sessionVariables.EDITOR = "hx";
2020-03-12 15:41:24 +01:00
home.file.".editorconfig".text = ''
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
'';
}