31 lines
909 B
Lua
31 lines
909 B
Lua
-- Autocmds are automatically loaded on the VeryLazy event
|
|
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
|
-- Add any additional autocmds here
|
|
vim.api.nvim_create_autocmd("FileType", {
|
|
pattern = { "lua" },
|
|
callback = function()
|
|
vim.bo.tabstop = 2
|
|
vim.bo.softtabstop = 2
|
|
vim.bo.shiftwidth = 2
|
|
end,
|
|
})
|
|
|
|
local cmp = require("cmp")
|
|
|
|
cmp.setup({
|
|
mapping = {
|
|
["<Tab>"] = cmp.mapping.confirm({ select = true }),
|
|
["<CR>"] = cmp.mapping({
|
|
i = function(fallback)
|
|
if cmp.visible() and cmp.get_active_entry() then
|
|
cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false })
|
|
else
|
|
fallback()
|
|
end
|
|
end,
|
|
s = cmp.mapping.confirm({ select = true }),
|
|
c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }),
|
|
}),
|
|
},
|
|
})
|