Compare commits
2 Commits
06c3950a97
...
afbf17321d
Author | SHA1 | Date | |
---|---|---|---|
afbf17321d | |||
75be653ee2 |
@ -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
|
||||
];
|
||||
}
|
||||
|
12
user/modules/nvim/lua/plugins/lsp.lua
Normal file
12
user/modules/nvim/lua/plugins/lsp.lua
Normal file
@ -0,0 +1,12 @@
|
||||
return {
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
---@class PluginLspOpts
|
||||
opts = {
|
||||
---@type lspconfig.options
|
||||
servers = {
|
||||
nil_ls = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user