From c063d831a160189adcec711a4d497b4f112dc018 Mon Sep 17 00:00:00 2001 From: Rodney <49618020+rodneybbjr@users.noreply.github.com> Date: Sun, 13 Jul 2025 21:45:10 -0400 Subject: [PATCH] added nvim-hilight-colors --- init.lua | 8 ++++---- lua/custom/plugins/highlight.lua | 5 +++++ 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 lua/custom/plugins/highlight.lua diff --git a/init.lua b/init.lua index 0391dfb..4719745 100644 --- a/init.lua +++ b/init.lua @@ -671,17 +671,17 @@ require('lazy').setup({ -- - settings (table): Override the default settings passed when initializing the server. -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { - -- clangd = {}, - -- gopls = {}, + clangd = {}, + gopls = {}, -- pyright = {}, - -- rust_analyzer = {}, + rust_analyzer = {}, -- ... 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 (`ts_ls`) will work just fine - -- ts_ls = {}, + ts_ls = {}, -- lua_ls = { diff --git a/lua/custom/plugins/highlight.lua b/lua/custom/plugins/highlight.lua new file mode 100644 index 0000000..a82bf66 --- /dev/null +++ b/lua/custom/plugins/highlight.lua @@ -0,0 +1,5 @@ +return { + { + 'brenoprata10/nvim-highlight-colors' + }, +}