Compare commits
No commits in common. "92a1a1753a01da59b5ee492f5203f2daa7aabe17" and "180c90a0df376317f3ac98256397fe626d0d943c" have entirely different histories.
92a1a1753a
...
180c90a0df
1 changed files with 1 additions and 2 deletions
3
init.lua
3
init.lua
|
|
@ -169,7 +169,6 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
|
||||||
pattern = "markdown",
|
pattern = "markdown",
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.opt_local.textwidth = 85
|
vim.opt_local.textwidth = 85
|
||||||
vim.opt_local.spell = true
|
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
-- YAML --
|
-- YAML --
|
||||||
|
|
@ -405,7 +404,7 @@ cmp.setup({
|
||||||
["<C-Space>"] = cmp.mapping.complete(),
|
["<C-Space>"] = cmp.mapping.complete(),
|
||||||
["<C-e>"] = cmp.mapping.abort(),
|
["<C-e>"] = cmp.mapping.abort(),
|
||||||
-- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
|
-- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
|
||||||
["<CR>"] = cmp.mapping.confirm({ select = false }),
|
["<CR>"] = cmp.mapping.confirm({ select = true }),
|
||||||
}),
|
}),
|
||||||
sources = cmp.config.sources({
|
sources = cmp.config.sources({
|
||||||
{ name = "nvim_lsp" },
|
{ name = "nvim_lsp" },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue