1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-08-24 19:39:08 +00:00

Add neovim dotfiles

This commit is contained in:
2022-10-01 13:46:18 +02:00
parent b136026491
commit 4b791cb985
41 changed files with 1330 additions and 113 deletions

View File

@@ -0,0 +1,9 @@
return {
settings = {
python = {
analysis = {
typeCheckingMode = "off",
},
},
},
}

View File

@@ -0,0 +1,18 @@
return {
settings = {
Lua = {
diagnostics = {
globals = { "vim" },
},
workspace = {
library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.stdpath("config") .. "/lua"] = true,
},
},
telemetry = {
enable = false,
},
},
},
}