Add stuff and find-files ignore

This commit is contained in:
Zam Kokott
2026-02-23 18:13:21 +00:00
parent 206ab83ea9
commit 66b3e24ad3
5 changed files with 37 additions and 18 deletions

View File

@@ -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

View File

@@ -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", {

View File

@@ -13,6 +13,9 @@ return {
adapters = {
require("neotest-python"),
require("neotest-go")
},
diagnostic = {
enabled = true
}
})
end

View File

@@ -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 {