formatted nix files using alejandra

This commit is contained in:
pagedmov
2024-10-31 22:33:10 -04:00
parent c6d381fc58
commit 495d90b0de
45 changed files with 1537 additions and 1504 deletions

View File

@@ -1,16 +1,16 @@
{
imports = [
./alpha.nix
./haskell.nix
./vim-matchup.nix
./coq.nix
./barbar.nix
./cmp.nix
./lsp.nix
./lualine.nix
./plugins.nix
./nvim-tree.nix
./telescope.nix
./extra_plugins.nix
];
imports = [
./alpha.nix
./haskell.nix
./vim-matchup.nix
./coq.nix
./barbar.nix
./cmp.nix
./lsp.nix
./lualine.nix
./plugins.nix
./nvim-tree.nix
./telescope.nix
./extra_plugins.nix
];
}

View File

@@ -39,13 +39,13 @@
};
})
#(pkgs.vimUtils.buildVimPlugin {
#name = "nvim-ghost.nvim";
#src = pkgs.fetchFromGitHub {
#owner = "subnut";
#repo = "nvim-ghost.nvim";
#rev = "67cc8f38c69d271af1c2430ff5099766f3550eb8";
#hash = "sha256-XldDgPqVeIfUjaRLVUMp88eHBHLzoVgOmT3gupPs+ao=";
#};
#name = "nvim-ghost.nvim";
#src = pkgs.fetchFromGitHub {
#owner = "subnut";
#repo = "nvim-ghost.nvim";
#rev = "67cc8f38c69d271af1c2430ff5099766f3550eb8";
#hash = "sha256-XldDgPqVeIfUjaRLVUMp88eHBHLzoVgOmT3gupPs+ao=";
#};
#})
];
};

View File

@@ -1,7 +1,7 @@
{ pkgs, ... }: {
programs.nixvim = {
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
{pkgs, ...}: {
programs.nixvim = {
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
name = "haskell-tools.nvim";
src = pkgs.fetchFromGitHub {
owner = "mrcjkb";
@@ -10,9 +10,9 @@
hash = "sha256-f+M35EwAlHwjJ2Xs2u9FLnyH0FJT22D0LLShDXCbEEs=";
};
})
];
plugins = {
haskell-scope-highlighting.enable = true;
};
};
];
plugins = {
haskell-scope-highlighting.enable = true;
};
};
}

View File

@@ -14,10 +14,10 @@
nil_ls.enable = true;
pyright.enable = true;
sqls.enable = true;
hls = {
enable = true;
installGhc = true;
};
hls = {
enable = true;
installGhc = true;
};
};
};
};

View File

@@ -1,29 +1,29 @@
{
programs.nixvim = {
plugins = {
dap = {
dap = {
enable = true;
extensions.dap-ui.enable = true;
};
nix.enable = true;
neoscroll.enable = true;
endwise.enable = true;
firenvim.enable = true;
floaterm.enable = true;
fugitive.enable = true;
gitsigns.enable = true;
indent-blankline.enable = true;
lastplace.enable = true;
markdown-preview.enable = true;
marks.enable = true;
nvim-surround.enable = true;
rainbow-delimiters.enable = true;
render-markdown.enable = true;
rustaceanvim.enable = true;
treesitter.enable = true;
trim.enable = true;
trouble.enable = true;
web-devicons.enable = true;
nix.enable = true;
neoscroll.enable = true;
endwise.enable = true;
firenvim.enable = true;
floaterm.enable = true;
fugitive.enable = true;
gitsigns.enable = true;
indent-blankline.enable = true;
lastplace.enable = true;
markdown-preview.enable = true;
marks.enable = true;
nvim-surround.enable = true;
rainbow-delimiters.enable = true;
render-markdown.enable = true;
rustaceanvim.enable = true;
treesitter.enable = true;
trim.enable = true;
trouble.enable = true;
web-devicons.enable = true;
};
};
}