mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 02:08:29 +02:00
feat: add develop environment for ruby
This commit is contained in:
4
home/base/core/editors/README.md
Normal file
4
home/base/core/editors/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Editors
|
||||
|
||||
See [desktop/editors/](../../desktop/editors/) for more details.
|
||||
|
||||
3
home/base/core/editors/default.nix
Normal file
3
home/base/core/editors/default.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{mylib, ...}: {
|
||||
imports = mylib.scanPaths ./.;
|
||||
}
|
||||
5
home/base/core/editors/helix/default.nix
Normal file
5
home/base/core/editors/helix/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{pkgs, ...}: {
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
11
home/base/core/editors/neovim/default.nix
Normal file
11
home/base/core/editors/neovim/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{pkgs, ...}: {
|
||||
programs = {
|
||||
neovim = {
|
||||
enable = true;
|
||||
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user