diff options
| author | 2025-03-06 20:54:40 +0300 | |
|---|---|---|
| committer | 2025-03-06 20:54:40 +0300 | |
| commit | 1fa7dd0709e3372dfa9d547a23ea441fdaf32630 (patch) | |
| tree | b9381078e962961beb57a2be3b629ca4d377f631 /flake.nix | |
| parent | feat: add `notify` extension to `telescope` (diff) | |
| download | neovim-configuration-1fa7dd0709e3372dfa9d547a23ea441fdaf32630.tar.gz neovim-configuration-1fa7dd0709e3372dfa9d547a23ea441fdaf32630.tar.bz2 neovim-configuration-1fa7dd0709e3372dfa9d547a23ea441fdaf32630.tar.lz neovim-configuration-1fa7dd0709e3372dfa9d547a23ea441fdaf32630.tar.xz neovim-configuration-1fa7dd0709e3372dfa9d547a23ea441fdaf32630.tar.zst neovim-configuration-1fa7dd0709e3372dfa9d547a23ea441fdaf32630.zip | |
feat: finally working LSP
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -101,8 +101,9 @@ # at RUN TIME for plugins. Will be available to PATH within neovim terminal # this includes LSPs lspsAndRuntimeDeps = { - general = with pkgs; [ - ]; + general = with pkgs; { + lua = [ lua-language-server ]; + }; }; # This is for plugins that will load at startup without using packadd: @@ -136,7 +137,6 @@ completion = [ blink-cmp ]; # NOTE: On NeoVim 0.11+ nvim-lspconfig is not required due to native API - # lsp = [ nvim-lspconfig mason-nvim mason-lspconfig-nvim ]; lsp = []; mini = [ mini-ai mini-align mini-move mini-pairs mini-surround ]; |
