From d95b19c6c0df3088df25368679b66136c7e5c2bb Mon Sep 17 00:00:00 2001 From: tdback Date: Sat, 23 Nov 2024 15:39:50 -0500 Subject: [PATCH] cleanup cruft --- after/ftplugin/elm.lua | 3 --- lua/custom/lazy.lua | 2 +- lua/custom/plugins/lsp.lua | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 after/ftplugin/elm.lua diff --git a/after/ftplugin/elm.lua b/after/ftplugin/elm.lua deleted file mode 100644 index 78c5eeb..0000000 --- a/after/ftplugin/elm.lua +++ /dev/null @@ -1,3 +0,0 @@ -vim.opt_local.shiftwidth = 2 -vim.opt_local.tabstop = 2 -vim.opt_local.expandtab = true diff --git a/lua/custom/lazy.lua b/lua/custom/lazy.lua index 7ef0390..4b4046d 100644 --- a/lua/custom/lazy.lua +++ b/lua/custom/lazy.lua @@ -1,7 +1,7 @@ vim.g.mapleader = " " vim.g.maplocalleader = " " -local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not (vim.uv or vim.loop).fs_stat(lazypath) then vim.fn.system({ "git", diff --git a/lua/custom/plugins/lsp.lua b/lua/custom/plugins/lsp.lua index 2bdb0c5..256b460 100644 --- a/lua/custom/plugins/lsp.lua +++ b/lua/custom/plugins/lsp.lua @@ -20,12 +20,10 @@ return { local lspc = require("lspconfig") local servers = { "clangd", - "elmls", "gopls", "hls", "nixd", "pylsp", - "roc_ls", "rust_analyzer", "zls", }