From 23d2b1bee88394c1475787947608fc1895ac867f Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Wed, 2 Apr 2025 08:49:53 +0200 Subject: [PATCH] fix(lsp): order LSP/DAP - minor change --- lua/lsp.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lsp.lua b/lua/lsp.lua index b564fa2..7329cec 100644 --- a/lua/lsp.lua +++ b/lua/lsp.lua @@ -158,7 +158,7 @@ local setup_godot_dap = function() } end +setup_godot_dap() + vim.diagnostic.config({ virtual_text = true }) vim.lsp.enable({ "ltex_plus", "rust-analyzer", "gdscript" }) - -setup_godot_dap()