aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/lspsaga.lua
diff options
context:
space:
mode:
authoreric.marin <maarin.eric@gmail.com>2025-09-07 21:17:26 +0200
committereric.marin <maarin.eric@gmail.com>2025-09-08 12:03:27 +0200
commitab6d61c5fc5f8adebd46691f94cf35c32ae631db (patch)
tree20c5bfde9157d0e840ab53fc5059c592656f9eac /nvim/lua/plugins/lspsaga.lua
parente958146735f214509d3996a21a1adfb950e415b8 (diff)
downloaddotfiles-ab6d61c5fc5f8adebd46691f94cf35c32ae631db.tar.gz
dotfiles-ab6d61c5fc5f8adebd46691f94cf35c32ae631db.zip
changed a bunch of things
updated the Wallpaper Menu and adjusted other things
Diffstat (limited to '')
-rw-r--r--nvim/lua/plugins/lspsaga.lua63
1 files changed, 30 insertions, 33 deletions
diff --git a/nvim/lua/plugins/lspsaga.lua b/nvim/lua/plugins/lspsaga.lua
index b87260a..48ac080 100644
--- a/nvim/lua/plugins/lspsaga.lua
+++ b/nvim/lua/plugins/lspsaga.lua
@@ -1,38 +1,35 @@
local config = function()
- vim.diagnostic.config({
- severity_sort = true,
- })
- require("lspsaga").setup({
- ui = {
- code_action = "",
- },
- outline = {
- keys = {
- toggle_or_jump = "<Enter>"
- }
- },
- finder = {
- keys = {
- toggle_or_open = "<Enter>",
- shuttle = "<Tab>",
- }
- },
- diagnostic = {
- diagnostic_only_current = true,
- }
- })
- vim.diagnostic.config({
- virtual_text = false
- })
+ vim.diagnostic.config({
+ severity_sort = true,
+ })
+ require("lspsaga").setup({
+ ui = {
+ code_action = "",
+ },
+ outline = {
+ keys = {
+ toggle_or_jump = "<Enter>"
+ }
+ },
+ finder = {
+ keys = {
+ toggle_or_open = "<Enter>",
+ shuttle = "<Tab>",
+ }
+ },
+ })
+ vim.diagnostic.config({
+ virtual_text = true
+ })
end
return {
- "nvimdev/lspsaga.nvim",
- lazy = true,
- event = { "BufReadPost", "BufWritePost", "BufNewFile" },
- config = config,
- dependencies = {
- "nvim-treesitter/nvim-treesitter", -- optional
- "nvim-tree/nvim-web-devicons", -- optional
- },
+ "nvimdev/lspsaga.nvim",
+ lazy = true,
+ event = { "BufReadPost", "BufWritePost", "BufNewFile" },
+ config = config,
+ dependencies = {
+ "nvim-treesitter/nvim-treesitter", -- optional
+ "nvim-tree/nvim-web-devicons", -- optional
+ },
}