From d415cebf8865b79920b5f4390c1d4fbb58306a6b Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Fri, 12 Jan 2024 20:14:02 -0600 Subject: [PATCH] reenable luals --- config/.config/nvim/lazy-lock.json | 2 +- vim/.vim/lua/plugins/mason.lua | 2 +- vim/.vim/lua/plugins/themes-personal.lua | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/config/.config/nvim/lazy-lock.json b/config/.config/nvim/lazy-lock.json index cb7ef00..c611721 100644 --- a/config/.config/nvim/lazy-lock.json +++ b/config/.config/nvim/lazy-lock.json @@ -29,7 +29,6 @@ "crates.nvim": { "branch": "main", "commit": "1dffccc0a95f656ebe00cacb4de282473430c5a1" }, "dashboard-nvim": { "branch": "master", "commit": "63df28409d940f9cac0a925df09d3dc369db9841" }, "debugprint.nvim": { "branch": "main", "commit": "661eea1d6f8237097ae372578fbe7458d690a3ac" }, - "diagflow.nvim": { "branch": "main", "commit": "6882a91ec0473fbc4a04881c9bf7eaeb08185cac" }, "fidget.nvim": { "branch": "main", "commit": "3a93300c076109d86c7ce35ec67a8034ae6ba9db" }, "firenvim": { "branch": "master", "commit": "138424db463e6c0e862a05166a4ccc781cd7c19d" }, "friendly-snippets": { "branch": "main", "commit": "69a2c1675b66e002799f5eef803b87a12f593049" }, @@ -84,6 +83,7 @@ "rustaceanvim": { "branch": "master", "commit": "d03f72788b81cb311250d9fe0692f3435d609b5a" }, "scope.nvim": { "branch": "main", "commit": "cd27af77ad61a7199af5c28d27013fb956eb0e3e" }, "scss-syntax.vim": { "branch": "master", "commit": "bda22a93d1dcfcb8ee13be1988560d9bb5bd0fef" }, + "sonokai": { "branch": "master", "commit": "bdce098fc9e7202d3c555e2dc98c755ca1c23835" }, "tabular": { "branch": "master", "commit": "339091ac4dd1f17e225fe7d57b48aff55f99b23a" }, "tagalong.vim": { "branch": "main", "commit": "5a2bbf2b1d5b657685a49d48d98a4aa921c1fde3" }, "telescope-dap.nvim": { "branch": "master", "commit": "8c88d9716c91eaef1cdea13cb9390d8ef447dbfe" }, diff --git a/vim/.vim/lua/plugins/mason.lua b/vim/.vim/lua/plugins/mason.lua index e809faa..1ebf679 100644 --- a/vim/.vim/lua/plugins/mason.lua +++ b/vim/.vim/lua/plugins/mason.lua @@ -9,7 +9,7 @@ return { local use_google = require("utils").use_google local lsps = { - -- "lua_ls", + "lua_ls", "html", "marksman", "sqlls", diff --git a/vim/.vim/lua/plugins/themes-personal.lua b/vim/.vim/lua/plugins/themes-personal.lua index 852d50f..5f82b57 100644 --- a/vim/.vim/lua/plugins/themes-personal.lua +++ b/vim/.vim/lua/plugins/themes-personal.lua @@ -1,6 +1,13 @@ local use_google = require("utils").use_google return { + { + "sainnhe/sonokai", + config = function() + vim.g.sonokai_diagnostic_virtual_text = "highlighted" + vim.cmd("colorscheme sonokai") + end, + }, { "rebelot/kanagawa.nvim", lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme