Compare commits

..

No commits in common. "2abebe085ac7ac03a7ae9f813dcfb5a7ea980bb5" and "d52c0a105de1e8071fcff27a03cbc45418559200" have entirely different histories.

3 changed files with 1 additions and 23 deletions

View file

@ -9,6 +9,5 @@
./vifm
./bat.nix
./eza.nix
./direnv.nix
];
}

View file

@ -1,7 +0,0 @@
{
programs.direnv = {
enable = true;
enableZshIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
}

View file

@ -1,19 +1,5 @@
{ pkgs, config, ... }:
let
nvim-spell-fr-utf8-dictionary = builtins.fetchurl {
url = "http://ftp.vim.org/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";
sha256 = "0294bc32b42c90bbb286a89e23ca3773b7ef50eff1ab523b1513d6a25c6b3f58";
};
in
{ pkgs, ... }:
{
home.file."${config.xdg.configHome}/nvim/spell/fr.utf-8.spl".source = nvim-spell-fr-utf8-dictionary;
home.file."${config.xdg.configHome}/nvim/spell/fr.utf-8.sug".source = nvim-spell-fr-utf8-suggestions;
programs.neovim = {
enable = true;
defaultEditor = true;