make snippets work
This commit is contained in:
parent
389c1ee2e2
commit
4f7e6068f3
66
lua/init.lua
66
lua/init.lua
|
@ -42,15 +42,6 @@ require("mason").setup({
|
||||||
|
|
||||||
require("mason-lspconfig").setup()
|
require("mason-lspconfig").setup()
|
||||||
|
|
||||||
require("mason-lspconfig").setup_handlers {
|
|
||||||
-- The first entry (without a key) will be the default handler
|
|
||||||
-- and will be called for each installed server that doesn't have
|
|
||||||
-- a dedicated handler.
|
|
||||||
function (server_name) -- default handler (optional)
|
|
||||||
require("lspconfig")[server_name].setup {}
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
vim.api.nvim_set_keymap("", "<UP>", "<NOP>", {})
|
vim.api.nvim_set_keymap("", "<UP>", "<NOP>", {})
|
||||||
vim.api.nvim_set_keymap("", "<DOWn>", "<NOP>", {})
|
vim.api.nvim_set_keymap("", "<DOWn>", "<NOP>", {})
|
||||||
vim.api.nvim_set_keymap("", "<LEFT>", "<NOP>", {})
|
vim.api.nvim_set_keymap("", "<LEFT>", "<NOP>", {})
|
||||||
|
@ -82,6 +73,63 @@ require('goto-preview').setup {
|
||||||
vim_ui_input = true, -- Whether to override vim.ui.input with a goto-preview floating window
|
vim_ui_input = true, -- Whether to override vim.ui.input with a goto-preview floating window
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local has_words_before = function()
|
||||||
|
unpack = unpack or table.unpack
|
||||||
|
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
|
||||||
|
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local feedkey = function(key, mode)
|
||||||
|
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(key, true, true, true), mode, true)
|
||||||
|
end
|
||||||
|
|
||||||
|
local cmp = require("cmp")
|
||||||
|
cmp.setup({
|
||||||
|
snippet = {
|
||||||
|
expand = function(args)
|
||||||
|
vim.fn["vsnip#anonymous"](args.body)
|
||||||
|
end
|
||||||
|
},
|
||||||
|
window = {
|
||||||
|
completion = cmp.config.window.bordered(),
|
||||||
|
documentation = cmp.config.window.bordered()
|
||||||
|
},
|
||||||
|
mapping = cmp.mapping.preset.insert({
|
||||||
|
['<C-b>'] = cmp.mapping.scroll_docs(-4),
|
||||||
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||||
|
['<C-Space>'] = cmp.mapping.complete(),
|
||||||
|
['<C-e>'] = cmp.mapping.abort(),
|
||||||
|
['<TAB>'] = cmp.mapping(function(fallback)
|
||||||
|
if cmp.visible() then
|
||||||
|
cmp.confirm({ behaviour = cmp.ConfirmBehavior.Insert, select = true })
|
||||||
|
elseif vim.fn["vsnip#available"](1) == 1 then
|
||||||
|
feedkey("<Plug>(vsnip-expand-or-jump)", "")
|
||||||
|
else
|
||||||
|
fallback()
|
||||||
|
end
|
||||||
|
end, { "i", "s" })
|
||||||
|
}),
|
||||||
|
sources = cmp.config.sources({
|
||||||
|
{ name = "nvim_lsp" },
|
||||||
|
{ name = "vsnip" },
|
||||||
|
}, {
|
||||||
|
{ name = "buffer" }
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
local capabilities = require("cmp_nvim_lsp").default_capabilities()
|
||||||
|
require("mason-lspconfig").setup_handlers {
|
||||||
|
-- The first entry (without a key) will be the default handler
|
||||||
|
-- and will be called for each installed server that doesn't have
|
||||||
|
-- a dedicated handler.
|
||||||
|
function (server_name) -- default handler (optional)
|
||||||
|
require("lspconfig")[server_name].setup {
|
||||||
|
capabilities = capabilities
|
||||||
|
}
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
require("nvim-tree").setup({
|
require("nvim-tree").setup({
|
||||||
update_focused_file = {
|
update_focused_file = {
|
||||||
enable = true
|
enable = true
|
||||||
|
|
|
@ -18,6 +18,13 @@ return {
|
||||||
"romgrk/barbar.nvim",
|
"romgrk/barbar.nvim",
|
||||||
"vimsence/vimsence",
|
"vimsence/vimsence",
|
||||||
'hiphish/rainbow-delimiters.nvim',
|
'hiphish/rainbow-delimiters.nvim',
|
||||||
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
|
"hrsh7th/cmp-buffer",
|
||||||
|
"hrsh7th/cmp-path",
|
||||||
|
"hrsh7th/nvim-cmp",
|
||||||
|
"hrsh7th/cmp-vsnip",
|
||||||
|
"hrsh7th/vim-vsnip",
|
||||||
|
"hrsh7th/vim-vsnip-integ",
|
||||||
{
|
{
|
||||||
'numToStr/Comment.nvim',
|
'numToStr/Comment.nvim',
|
||||||
opts={},
|
opts={},
|
||||||
|
|
Loading…
Reference in a new issue