nvim updates

This commit is contained in:
2026-04-27 18:46:26 +02:00
parent acdf747c02
commit 7eaec6d1d7
4 changed files with 22 additions and 3 deletions

View File

@@ -15,13 +15,18 @@ return {
"rust_analyzer",
"templ",
"tailwindcss",
"nil_ls"
"nil_ls",
"gleam",
"ty"
})
-- Testing basedpyright atm, change to jedi idk
vim.lsp.config("basedpyright", {
settings = {
python = {
pythonPath = vim.fn.exepath("python"),
},
['basedpyright'] = {
analysis = {
typeCheckingMode = "basic",

View File

@@ -4,8 +4,18 @@ return {
config = function()
require('lualine').setup({
options = {
theme = 'dracula'
theme = 'catppuccin'
},
sections = {
lualine_x = {
function()
return require('direnv').statusline()
end,
'encoding',
'fileformat',
'filetype',
}
}
})
end
}

View File

@@ -11,7 +11,10 @@ return {
config = function()
require("neotest").setup({
adapters = {
require("neotest-python"),
require("neotest-python")({
python = vim.fn.exepath("python"),
runner = "pytest",
}),
require("neotest-go")
},
diagnostic = {