remove obsolete config

This commit is contained in:
Vladan Popovic 2024-03-20 12:49:43 +01:00
parent 0fabc551bd
commit 8a348282a4
2 changed files with 2 additions and 7 deletions

View file

@ -28,9 +28,6 @@ end
local nvim_lsp = require('lspconfig')
local capabilities = vim.lsp.protocol.make_client_capabilities()
-- show snippets in code completion popup
capabilities.textDocument.completion.completionItem.snippetSupport = true;
-- LSPs
local servers = {
"clangd",

View file

@ -23,13 +23,11 @@ utils.opt('o', 'wildmode', 'list:longest')
utils.opt('w', 'number', true)
utils.opt('o', 'clipboard','unnamed,unnamedplus')
vim.opt.autoindent = true
vim.opt.smartindent = true
vim.opt.autoindent = false
vim.opt.smartindent = false
vim.opt.background = 'light'
vim.opt.errorformat:prepend('%f|%l col %c|%m')
vim.opt.fileformat = 'unix'
vim.opt.pastetoggle = '<F2>'
vim.opt.textwidth = 79
vim.opt.undofile = true
-- Enable vimrc files per project and disable unsafe commands in project vimrc