Skip to content

Commit

Permalink
feat: add nvim
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Ortega <[email protected]>
  • Loading branch information
M0NsTeRRR committed Dec 24, 2024
1 parent db93ea6 commit 5c9bea6
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ jobs:
run: nix flake check
- name: Run nix fmt
run: nix fmt
- name: Run flake check
run: nix flake check
10 changes: 5 additions & 5 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added home/config/nvim/init.vim
Empty file.
1 change: 1 addition & 0 deletions home/user/config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ in
home.file = {
".config/hyprpanel/config.json".source = "${configDir}/hyprpanel/config.json";
".config/hypr".source = "${configDir}/hypr";
".config/nvim".source = "${configDir}/nvim";
".config/rofi".source = "${configDir}/rofi";
".config/wallpapers".source = "${configDir}/wallpapers";
".kube/switch-config.yaml".source = "${configDir}/kube/switch-config.yaml";
Expand Down
1 change: 1 addition & 0 deletions home/user/programs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
./hyprland.nix
./gpg.nix
./kitty.nix
./neovim.nix
./starship.nix
./vscode.nix
./zsh.nix
Expand Down
2 changes: 1 addition & 1 deletion home/user/programs/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
signByDefault = true;
};
extraConfig = {
core.editor = "vim";
core.editor = "nvim";
ui.color = true;
push.autoSetupRemote = true;
};
Expand Down
5 changes: 5 additions & 0 deletions home/user/programs/neovim.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
programs.neovim = {
enable = true;
};
}
1 change: 1 addition & 0 deletions home/user/programs/vscode.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# kubernetes
ms-kubernetes-tools.vscode-kubernetes-tools
# misc
asvetliakov.vscode-neovim
editorconfig.editorconfig
redhat.vscode-yaml
ms-vscode.makefile-tools
Expand Down

0 comments on commit 5c9bea6

Please sign in to comment.