diff --git a/modules/home-manager/cli/neovim/default.nix b/modules/home-manager/cli/neovim/default.nix index f6556e9..2daee9a 100644 --- a/modules/home-manager/cli/neovim/default.nix +++ b/modules/home-manager/cli/neovim/default.nix @@ -3,11 +3,11 @@ with lib; let cfg = config.modules.cli.neovim; nvim-spell-fr-utf8-dictionary = builtins.fetchurl { - url = "http://ftp.vim.org/vim/runtime/spell/fr.utf-8.spl"; + url = "https://ftp.nluug.nl/vim/runtime/spell/fr.utf-8.spl"; sha256 = "abfb9702b98d887c175ace58f1ab39733dc08d03b674d914f56344ef86e63b61"; }; nvim-spell-fr-utf8-suggestions = builtins.fetchurl { - url = "http://ftp.vim.org/vim/runtime/spell/fr.utf-8.sug"; + url = "https://ftp.nluug.nl/vim/runtime/spell/fr.utf-8.sug"; sha256 = "0294bc32b42c90bbb286a89e23ca3773b7ef50eff1ab523b1513d6a25c6b3f58"; }; fromGitHub = rev: ref: repo: @@ -146,27 +146,27 @@ in plenary-nvim { plugin = (nvim-treesitter.withPlugins (p: [ - p.bash - p.c + p.bash + p.c p.cpp - p.cmake - p.dockerfile + p.cmake + p.dockerfile p.hcl p.helm p.javascript - p.latex + p.latex p.lua p.llvm p.markdown - p.markdown_inline + p.markdown_inline p.nix p.puppet - p.python + p.python p.ruby p.terraform p.typescript - p.vim - p.yaml + p.vim + p.yaml ]) ); type = "lua"; @@ -197,7 +197,7 @@ in type = "lua"; config = ( builtins.readFile ./files/whichkey.lua ); } -# yaml companion +# yaml companion { plugin = ( fromGitHub "131b0d67bd2e0f1a02e0daf2f3460482221ce3c0"