From 2685f063af91fe28e4ee1d03d65f8bbda37d2f79 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Wed, 18 Jan 2023 05:37:39 -0700 Subject: [PATCH] neovim: install solargraph and enable as lsp --- configs/neovim.lua | 1 + configs/neovim.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/neovim.lua b/configs/neovim.lua index 3d4a315..5b443d8 100644 --- a/configs/neovim.lua +++ b/configs/neovim.lua @@ -59,6 +59,7 @@ local lspc = require("lspconfig") lspc.gopls.setup {}; lspc.nil_ls.setup {}; lspc.sumneko_lua.setup {}; +lspc.solargraph.setup {}; o.hlsearch = true; diff --git a/configs/neovim.nix b/configs/neovim.nix index 241ceeb..6e31ea0 100644 --- a/configs/neovim.nix +++ b/configs/neovim.nix @@ -68,6 +68,7 @@ in { manix ripgrep sumneko-lua-language-server + rubyPackages.solargraph ]; programs.neovim = { enable = true;