1
0
This commit is contained in:
2025-03-28 18:14:04 +00:00
parent 7bb3573390
commit 0c0e58deb2
2 changed files with 0 additions and 10 deletions

View File

@@ -38,7 +38,6 @@ vim.opt.colorcolumn = "80"
-- use language-specific plugins for indenting (better): -- use language-specific plugins for indenting (better):
vim.cmd("filetype plugin indent on") vim.cmd("filetype plugin indent on")
vim.cmd("syntax on") vim.cmd("syntax on")
vim.keymap.set('n', 'p', '<Cmd>pu<CR>') vim.keymap.set('n', 'p', '<Cmd>pu<CR>')

View File

@@ -3,7 +3,6 @@ return {
'neovim/nvim-lspconfig', 'neovim/nvim-lspconfig',
dependencies = { 'saghen/blink.cmp' }, dependencies = { 'saghen/blink.cmp' },
-- example using `opts` for defining servers
opts = { opts = {
servers = { servers = {
lua_ls = { lua_ls = {
@@ -32,13 +31,5 @@ return {
lspconfig[server].setup(config) lspconfig[server].setup(config)
end end
end end
-- example calling setup directly for each LSP
-- config = function()
-- local capabilities = require('blink.cmp').get_lsp_capabilities()
-- local lspconfig = require('lspconfig')
--
-- lspconfig['lua_ls'].setup({ capabilities = capabilities })
-- end
} }
} }