Compare commits

..

3 Commits

Author SHA1 Message Date
81296b3234
chore(vesktop): update settings.json
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m6s
2024-09-05 09:16:12 -05:00
09774f74a3
refactor(nvim): pin noice version until patch comes 2024-09-05 09:15:53 -05:00
0e98a857e3
refactor(nvim): update tsserver -> ts_ls to follow lspconfig 2024-09-05 09:13:34 -05:00
3 changed files with 25 additions and 7 deletions

View File

@ -167,9 +167,6 @@ return {
"williamboman/mason-lspconfig.nvim", "williamboman/mason-lspconfig.nvim",
opts = { opts = {
automatic_installation = true, automatic_installation = true,
ensure_installed = {
"tsserver",
},
handlers = { handlers = {
["jdtls"] = function() ["jdtls"] = function()
require("java").setup({ require("java").setup({
@ -530,7 +527,7 @@ return {
"terraformls", "terraformls",
"tflint", "tflint",
"vimls", "vimls",
"tsserver", "ts_ls",
"asm_lsp", "asm_lsp",
"nginx_language_server", "nginx_language_server",
}) do }) do

View File

@ -2,6 +2,8 @@ return {
{ {
"folke/noice.nvim", "folke/noice.nvim",
event = "VeryLazy", event = "VeryLazy",
-- Pinned until https://github.com/folke/noice.nvim/issues/923 is resolved
commit = "d9328ef",
config = function() config = function()
require("noice").setup({ require("noice").setup({
lsp = { lsp = {

View File

@ -1,5 +1,5 @@
{ {
"autoUpdate": true, "autoUpdate": false,
"autoUpdateNotification": true, "autoUpdateNotification": true,
"useQuickCss": true, "useQuickCss": true,
"themeLinks": [ "themeLinks": [
@ -294,7 +294,8 @@
"ignoreSelf": true, "ignoreSelf": true,
"ignoreUsers": "", "ignoreUsers": "",
"ignoreChannels": "", "ignoreChannels": "",
"ignoreGuilds": "" "ignoreGuilds": "",
"collapseDeleted": false
}, },
"MessageTags": { "MessageTags": {
"enabled": false "enabled": false
@ -687,6 +688,24 @@
}, },
"AlwaysExpandRoles": { "AlwaysExpandRoles": {
"enabled": false "enabled": false
},
"CopyFileContents": {
"enabled": false
},
"ConsoleJanitor": {
"enabled": false
},
"MentionAvatars": {
"enabled": false
},
"NoMaskedUrlPaste": {
"enabled": false
},
"StickerPaste": {
"enabled": false
},
"VolumeBooster": {
"enabled": false
} }
}, },
"notifications": { "notifications": {
@ -699,6 +718,6 @@
"authenticated": false, "authenticated": false,
"url": "https://api.vencord.dev/", "url": "https://api.vencord.dev/",
"settingsSync": false, "settingsSync": false,
"settingsSyncVersion": 1724963182847 "settingsSyncVersion": 1725245324233
} }
} }