diff --git a/roles/hyprland/files/hypr/hyprland.conf b/roles/hyprland/files/hypr/hyprland.conf index bc01a36..ca8d6d9 100644 --- a/roles/hyprland/files/hypr/hyprland.conf +++ b/roles/hyprland/files/hypr/hyprland.conf @@ -30,7 +30,7 @@ exec-once = quickshell exec-once = dunst exec-once = firefox exec-once = hyprpaper -exec-once = gtk-launch deezer-pwa +# exec-once = gtk-launch deezer-pwa # hl.window_rule({ # name = "deezer-workspace" # match = { initialTitle = "Deezer" } diff --git a/roles/nvim/files/after/ftplugin/yaml.lua b/roles/nvim/files/after/ftplugin/yaml.lua new file mode 100644 index 0000000..e69de29 diff --git a/roles/nvim/files/lua/config/plugins/lsp/lspconfig.lua b/roles/nvim/files/lua/config/plugins/lsp/lspconfig.lua index 3e3a08d..0ecd8a3 100644 --- a/roles/nvim/files/lua/config/plugins/lsp/lspconfig.lua +++ b/roles/nvim/files/lua/config/plugins/lsp/lspconfig.lua @@ -99,7 +99,6 @@ return { -- Explicitly enable all mason-managed servers. -- This is belt-and-suspenders alongside mason-lspconfig's automatic_enable, -- ensuring servers start regardless of mason-lspconfig version. - vim.lsp.enable({ 'lua_ls', 'html', 'cssls', 'bashls', 'ts_ls', 'eslint', 'tailwindcss', 'mdx_analyzer', 'rust_analyzer' }) -- mdx_analyzer: needs typescript SDK path to find tsserverlibrary.js vim.lsp.config('mdx_analyzer', { @@ -130,5 +129,6 @@ return { -- }) vim.lsp.enable('postgres_lsp') + vim.lsp.enable({ 'lua_ls', 'html', 'cssls', 'bashls', 'ts_ls', 'eslint', 'tailwindcss', 'mdx_analyzer', 'rust_analyzer', 'docker_compose_language_service', 'docker_language_server' }) end, }