nvim updates
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
"blink.cmp": { "branch": "main", "commit": "4b18c32adef2898f95cdef6192cbd5796c1a332d" },
|
"blink.cmp": { "branch": "main", "commit": "4b18c32adef2898f95cdef6192cbd5796c1a332d" },
|
||||||
"catppuccin": { "branch": "main", "commit": "0a5de4da015a175f416d6ef1eda84661623e0500" },
|
"catppuccin": { "branch": "main", "commit": "0a5de4da015a175f416d6ef1eda84661623e0500" },
|
||||||
"conform.nvim": { "branch": "master", "commit": "e969e302bced7ffb9a0a0323629f31feb0ca35a6" },
|
"conform.nvim": { "branch": "master", "commit": "e969e302bced7ffb9a0a0323629f31feb0ca35a6" },
|
||||||
|
"direnv.nvim": { "branch": "main", "commit": "564146278b3d5fe4ffa389cd103bab20f9b515d6" },
|
||||||
"fidget.nvim": { "branch": "main", "commit": "7fa433a83118a70fe24c1ce88d5f0bd3453c0970" },
|
"fidget.nvim": { "branch": "main", "commit": "7fa433a83118a70fe24c1ce88d5f0bd3453c0970" },
|
||||||
"flash.nvim": { "branch": "main", "commit": "fcea7ff883235d9024dc41e638f164a450c14ca2" },
|
"flash.nvim": { "branch": "main", "commit": "fcea7ff883235d9024dc41e638f164a450c14ca2" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" },
|
"lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" },
|
||||||
|
|||||||
@@ -15,13 +15,18 @@ return {
|
|||||||
"rust_analyzer",
|
"rust_analyzer",
|
||||||
"templ",
|
"templ",
|
||||||
"tailwindcss",
|
"tailwindcss",
|
||||||
"nil_ls"
|
"nil_ls",
|
||||||
|
"gleam",
|
||||||
|
"ty"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
-- Testing basedpyright atm, change to jedi idk
|
-- Testing basedpyright atm, change to jedi idk
|
||||||
vim.lsp.config("basedpyright", {
|
vim.lsp.config("basedpyright", {
|
||||||
settings = {
|
settings = {
|
||||||
|
python = {
|
||||||
|
pythonPath = vim.fn.exepath("python"),
|
||||||
|
},
|
||||||
['basedpyright'] = {
|
['basedpyright'] = {
|
||||||
analysis = {
|
analysis = {
|
||||||
typeCheckingMode = "basic",
|
typeCheckingMode = "basic",
|
||||||
|
|||||||
@@ -4,8 +4,18 @@ return {
|
|||||||
config = function()
|
config = function()
|
||||||
require('lualine').setup({
|
require('lualine').setup({
|
||||||
options = {
|
options = {
|
||||||
theme = 'dracula'
|
theme = 'catppuccin'
|
||||||
|
},
|
||||||
|
sections = {
|
||||||
|
lualine_x = {
|
||||||
|
function()
|
||||||
|
return require('direnv').statusline()
|
||||||
|
end,
|
||||||
|
'encoding',
|
||||||
|
'fileformat',
|
||||||
|
'filetype',
|
||||||
}
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,10 @@ return {
|
|||||||
config = function()
|
config = function()
|
||||||
require("neotest").setup({
|
require("neotest").setup({
|
||||||
adapters = {
|
adapters = {
|
||||||
require("neotest-python"),
|
require("neotest-python")({
|
||||||
|
python = vim.fn.exepath("python"),
|
||||||
|
runner = "pytest",
|
||||||
|
}),
|
||||||
require("neotest-go")
|
require("neotest-go")
|
||||||
},
|
},
|
||||||
diagnostic = {
|
diagnostic = {
|
||||||
|
|||||||
Reference in New Issue
Block a user