update for nvim 0.12
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "markdown" },
|
||||
callback = function()
|
||||
vim.opt_local.wrap = true
|
||||
vim.opt_local.linebreak = true
|
||||
vim.opt_local.textwidth = 0
|
||||
vim.opt_local.wrapmargin = 0
|
||||
end,
|
||||
})
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
require("funsi.lazy_init")
|
||||
require("funsi.settings")
|
||||
require("funsi.keymaps")
|
||||
require("funsi.autocmds")
|
||||
|
||||
vim.lsp.config('gdscript', {})
|
||||
vim.lsp.enable('gdscript')
|
||||
|
||||
@@ -164,6 +164,10 @@ return { {
|
||||
diagnostics = {
|
||||
globals = { 'vim' },
|
||||
},
|
||||
workspace = {
|
||||
library = vim.api.nvim_get_runtime_file("", true),
|
||||
checkThirdParty = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user