Compare commits

...

2 Commits

Author SHA1 Message Date
afbf17321d feat(nvim): add ripgrep 2023-08-13 12:14:29 -04:00
75be653ee2 feat(nvim): add nix lsp support 2023-08-13 12:14:08 -04:00
2 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ config, ... }:
{ pkgs, config, ... }:
{
programs.neovim = {
enable = true;
@ -11,4 +11,8 @@
# Copy Neovim config
xdg.configFile.nvim.source = config.lib.file.mkOutOfStoreSymlink
"${config.home.homeDirectory}/Projects/nix-dots/user/modules/nvim";
home.packages = with pkgs; [
ripgrep
];
}

View File

@ -0,0 +1,12 @@
return {
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
nil_ls = {},
},
},
},
}