From 2c9794a13dea0001610bb54b2c37298503bf402d Mon Sep 17 00:00:00 2001 From: Kerry Staley <35789718+kgstaley@users.noreply.github.com> Date: Tue, 19 Mar 2024 17:18:07 -0700 Subject: [PATCH] add language servers and change colorscheme --- init.lua | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index bbfbfc8a..7215d5a3 100644 --- a/init.lua +++ b/init.lua @@ -581,15 +581,18 @@ require('lazy').setup({ local servers = { -- clangd = {}, -- gopls = {}, - -- pyright = {}, - -- rust_analyzer = {}, + pyright = {}, + rust_analyzer = {}, + ruby_ls = {}, + rubocop = {}, + gopls = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- -- Some languages (like typescript) have entire language plugins that can be useful: -- https://github.com/pmizio/typescript-tools.nvim -- -- But for many setups, the LSP (`tsserver`) will work just fine - -- tsserver = {}, + tsserver = {}, -- lua_ls = { @@ -775,13 +778,15 @@ require('lazy').setup({ -- change the command in the config to whatever the name of that colorscheme is. -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. - 'folke/tokyonight.nvim', + -- 'folke/tokyonight.nvim', + -- 'catppuccin/nvim', + 'olivercederborg/poimandres.nvim', priority = 1000, -- Make sure to load this before all the other start plugins. init = function() -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'poimandres' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none'