mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
849c0fef38
Co-Authored-By: Winter <winter@winter.cafe>
27 lines
485 B
Nix
27 lines
485 B
Nix
{ dotfiles, ... }:
|
|
|
|
{
|
|
programs.neovim = {
|
|
enable = true;
|
|
package = pkgs.neovim-unwrapped;
|
|
|
|
extraConfig = "source ${dotfiles}/nvim/init.vim";
|
|
|
|
coc = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
languageServer = {
|
|
nix = {
|
|
command = "rnix-lsp";
|
|
filetypes = [ "nix" ];
|
|
};
|
|
"go.goPlsOptions" = {
|
|
completion = true;
|
|
completeUnimported = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|