Fix indentation in init.vim.

This commit is contained in:
the_4n0nym0u53 2021-12-19 16:24:01 +01:00
parent 62a6d5c8b3
commit 83b9a13f9e
No known key found for this signature in database
GPG key ID: 35EE09F5481049BB

View file

@ -26,11 +26,11 @@ call plug#end()
""" LSP SETTINGS
lua << EOF
local lsp_installer = require("nvim-lsp-installer")
local lsp_installer = require("nvim-lsp-installer")
-- Register a handler that will be called for all installed servers.
-- Alternatively, you may also register handlers on specific server instances instead (see example below).
lsp_installer.on_server_ready(function(server)
-- Register a handler that will be called for all installed servers.
-- Alternatively, you may also register handlers on specific server instances instead (see example below).
lsp_installer.on_server_ready(function(server)
local opts = {}
-- (optional) Customize the options passed to the server
@ -41,12 +41,12 @@ lua << EOF
-- This setup() function is exactly the same as lspconfig's setup function.
-- Refer to https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
server:setup(opts)
end)
end)
-- Setup nvim-cmp.
local cmp = require'cmp'
-- Setup nvim-cmp.
local cmp = require'cmp'
cmp.setup({
cmp.setup({
snippet = {
-- REQUIRED - you must specify a snippet engine
expand = function(args)
@ -76,23 +76,23 @@ lua << EOF
}, {
{ name = 'buffer' },
})
})
})
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline('/', {
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline('/', {
sources = {
{ name = 'buffer' }
}
})
})
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline(':', {
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline(':', {
sources = cmp.config.sources({
{ name = 'path' }
}, {
{ name = 'cmdline' }
})
})
})
EOF