From 3c416a2f52fc9c27cdec4f07b1699e2e43a6a213 Mon Sep 17 00:00:00 2001 From: Skladnayazebra Date: Mon, 16 Mar 2026 17:32:35 +0100 Subject: Replace typescript-tools with ts_ls LSP, remove neoscroll --- nvim/lua/config/lazy.lua | 15 --------------- nvim/lua/config/lsp.lua | 2 ++ 2 files changed, 2 insertions(+), 15 deletions(-) (limited to 'nvim/lua') diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua index 3d83368..44d504b 100644 --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua @@ -52,11 +52,6 @@ require("lazy").setup({ require("nvim-surround").setup({}) end }, - { - "pmizio/typescript-tools.nvim", - dependencies = { "nvim-lua/plenary.nvim" }, - opts = {}, - }, { "prettier/vim-prettier" }, { "neovim/nvim-lspconfig" }, { "b0o/schemastore.nvim" }, @@ -73,16 +68,6 @@ require("lazy").setup({ end, }, require("config.blink-cmp"), - -- smooth scrolling - { - "karb94/neoscroll.nvim", - opts = { - duration_multiplier = 0.3, - mappings = { - '', '' - }, - } - }, { "f-person/auto-dark-mode.nvim", opts = { diff --git a/nvim/lua/config/lsp.lua b/nvim/lua/config/lsp.lua index 7205550..b937731 100644 --- a/nvim/lua/config/lsp.lua +++ b/nvim/lua/config/lsp.lua @@ -35,3 +35,5 @@ vim.lsp.enable('yamlls', { vim.lsp.enable('clangd') vim.lsp.enable('eslint') vim.lsp.enable('cssls') +-- npm i -g typescript-language-server +vim.lsp.enable('ts_ls') -- cgit v1.3.1