mirror of https://github.com/wlcx/home.git
nixfmt everything
This commit is contained in:
parent
cd91fb622c
commit
94986efa4a
|
@ -1,14 +1,13 @@
|
|||
{ pkgs, lib, system, ... }: {
|
||||
programs.neovim.plugins = with pkgs.vimPlugins; [
|
||||
# More fancy shit
|
||||
nvim-treesitter
|
||||
# Language stuff
|
||||
nvim-lspconfig
|
||||
trouble-nvim
|
||||
rust-vim
|
||||
] ++ lib.optionals (system != "aarch64-linux") [
|
||||
vim-go
|
||||
];
|
||||
programs.neovim.plugins = with pkgs.vimPlugins;
|
||||
[
|
||||
# More fancy shit
|
||||
nvim-treesitter
|
||||
# Language stuff
|
||||
nvim-lspconfig
|
||||
trouble-nvim
|
||||
rust-vim
|
||||
] ++ lib.optionals (system != "aarch64-linux") [ vim-go ];
|
||||
programs.neovim.extraConfig = ''
|
||||
lua <<EOF
|
||||
${builtins.readFile ./dev.lua}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# TODO: auto import everything
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
{ pkgs, ... }: {
|
||||
qrclip = pkgs.callPackage ./qrclip { };
|
||||
zbar = pkgs.callPackage ./zbar { };
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue