Establish baseline
This commit is contained in:
25
terminal-environment/editor.nix
Normal file
25
terminal-environment/editor.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ config, pkgs, ... }:
|
||||
let
|
||||
profile = import ../profile.nix;
|
||||
in
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [
|
||||
vim
|
||||
fzf
|
||||
ripgrep
|
||||
ripgrep-all
|
||||
ctags
|
||||
lua54Packages.luarocks-nix
|
||||
];
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
withPython3 = true;
|
||||
withRuby = true;
|
||||
withNodeJs = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user