cleanup cruft

This commit is contained in:
tdback 2024-11-23 15:39:50 -05:00
parent c5138201d1
commit d95b19c6c0
3 changed files with 1 additions and 6 deletions

View file

@ -1,3 +0,0 @@
vim.opt_local.shiftwidth = 2
vim.opt_local.tabstop = 2
vim.opt_local.expandtab = true

View file

@ -1,7 +1,7 @@
vim.g.mapleader = " " vim.g.mapleader = " "
vim.g.maplocalleader = " " 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 if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({ vim.fn.system({
"git", "git",

View file

@ -20,12 +20,10 @@ return {
local lspc = require("lspconfig") local lspc = require("lspconfig")
local servers = { local servers = {
"clangd", "clangd",
"elmls",
"gopls", "gopls",
"hls", "hls",
"nixd", "nixd",
"pylsp", "pylsp",
"roc_ls",
"rust_analyzer", "rust_analyzer",
"zls", "zls",
} }