summaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-03-16 17:32:35 +0100
committerSkladnayazebra <skladnayazebra@gmail.com>2026-03-16 17:32:35 +0100
commit3c416a2f52fc9c27cdec4f07b1699e2e43a6a213 (patch)
treefdd9feb1120066b0ce8a7e692e0bb2cc16c0ee33 /nvim/lua
parentfd0cb9c96df9e90cfd0db9228c1c3ca0b36bdaa1 (diff)
Replace typescript-tools with ts_ls LSP, remove neoscroll
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/config/lazy.lua15
-rw-r--r--nvim/lua/config/lsp.lua2
2 files changed, 2 insertions, 15 deletions
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 = {
- '<C-d>', '<C-u>'
- },
- }
- },
{
"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')