Add stuff and find-files ignore
This commit is contained in:
@@ -3,14 +3,14 @@ return {
|
||||
config = function()
|
||||
local lint = require("lint")
|
||||
lint.linters_by_ft = {
|
||||
python = { 'dmypy' }
|
||||
python = { 'mypy' }
|
||||
}
|
||||
|
||||
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })
|
||||
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave" }, {
|
||||
group = lint_augroup,
|
||||
callback = function()
|
||||
lint.try_lint(nil, {ignore_errors = true})
|
||||
lint.try_lint(nil, { ignore_errors = true })
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
@@ -1,8 +1,19 @@
|
||||
return {
|
||||
"neovim/nvim-lspconfig",
|
||||
config = function()
|
||||
vim.lsp.enable({ "lua_ls", "basedpyright", "gopls", "html", "yamlls", "svelte-language-server", "clangd",
|
||||
"ansiblels", "vtsls", "zls", "glsl_analyzer", "rust_analyzer" })
|
||||
vim.lsp.enable({ "lua_ls",
|
||||
"basedpyright",
|
||||
"gopls",
|
||||
"html",
|
||||
"yamlls",
|
||||
"svelte-language-server",
|
||||
"clangd",
|
||||
"ansiblels",
|
||||
"vtsls",
|
||||
"zls",
|
||||
"glsl_analyzer",
|
||||
"rust_analyzer"
|
||||
})
|
||||
|
||||
-- Testing basedpyright atm, change to jedi idk
|
||||
vim.lsp.config("basedpyright", {
|
||||
|
||||
@@ -13,6 +13,9 @@ return {
|
||||
adapters = {
|
||||
require("neotest-python"),
|
||||
require("neotest-go")
|
||||
},
|
||||
diagnostic = {
|
||||
enabled = true
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
@@ -13,6 +13,11 @@ return {
|
||||
config = function()
|
||||
local telescope = require("telescope")
|
||||
telescope.setup({
|
||||
pickers = {
|
||||
find_files = {
|
||||
find_command = { "rg", "--files", "--glob", "!**/vendor/*" }
|
||||
}
|
||||
},
|
||||
extensions = {
|
||||
["ui-select"] = {
|
||||
require("telescope.themes").get_dropdown {
|
||||
|
||||
Reference in New Issue
Block a user