feat: move neovim config to LazyVim
This commit is contained in:
parent
6067f0ff0b
commit
e21342857d
16 changed files with 569 additions and 137 deletions
|
|
@ -11,10 +11,10 @@
|
|||
gc = "git commit -m";
|
||||
gp = "git push";
|
||||
ta = "tmux attach";
|
||||
nec = "nvim --cmd \"cd $(readlink -f /etc/nixos)\"";
|
||||
ncc = "sudo nixos-rebuild switch --upgrade-all --flake \"$(readlink -f /etc/nixos)\"";
|
||||
nup = "sudo nix-channel --update";
|
||||
nuf = "sudo nix flake update --nix-path /etc/nixos";
|
||||
ngc = "sudo nix-collect-garbage -d";
|
||||
nec = "sudo -E nvim -u $HOME/.config/nvim/init.lua --cmd 'cd /etc/nixos'";
|
||||
ncc = "sudo nixos-rebuild switch --upgrade-all --flake /etc/nixos";
|
||||
nup = "sudo nix-channel --update && sudo nixos-rebuild switch --upgrade-all --flake /etc/nixos";
|
||||
nuf = "sudo nix flake update --nix-path /etc/nixos && sudo nixos-rebuild switch --upgrade-all --flake /etc/nixos";
|
||||
wip = "curl -s 'https://nordvpn.com/wp-admin/admin-ajax.php?action=get_user_info_data' | jq";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
pciutils
|
||||
usbutils
|
||||
git
|
||||
gnumake
|
||||
mercurial # contains 'hg'
|
||||
wget
|
||||
neofetch
|
||||
|
|
@ -10,6 +11,7 @@
|
|||
ripgrep
|
||||
expect # contains 'unbuffer'
|
||||
jq # parse json
|
||||
unzip
|
||||
] ++ lib.optionals (devenv.enable) [
|
||||
# languages
|
||||
gcc13
|
||||
|
|
@ -21,6 +23,8 @@
|
|||
nodenv
|
||||
rustc
|
||||
cargo
|
||||
nodejs_21
|
||||
lua
|
||||
] ++ lib.optionals (gui.enable) [
|
||||
libnotify
|
||||
glib # gsettings
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue