refactor: shuffle around order

This commit is contained in:
Nydragon 2024-05-16 12:27:38 +09:00
parent 2334e966bc
commit f6028fcbb9
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209

View file

@ -1,6 +1,13 @@
{ pkgs, ... }:
{
programs.neovim =
programs.neovim = {
defaultEditor = true;
viAlias = true;
vimAlias = true;
enable = true;
withPython3 = false;
withRuby = false;
extraPackages =
let
customR = pkgs.rWrapper.override {
packages = with pkgs.rPackages; [
@ -9,14 +16,8 @@
];
};
in
{
defaultEditor = true;
viAlias = true;
vimAlias = true;
enable = true;
withPython3 = false;
withRuby = false;
extraPackages = with pkgs; [
with pkgs;
[
# Language Servers
rust-analyzer
nixd