just catching up commits

main
Zynh Ludwig 2024-09-18 19:16:28 -07:00
parent d7ca1f2cc2
commit 6d97149d0f
5 changed files with 48 additions and 9 deletions

View File

@ -1,3 +1,3 @@
vim.diagnostic.config({
underline = false,
})
-- vim.diagnostic.config({
-- underline = false,
-- })

View File

@ -1,24 +1,29 @@
{
"extras": [
"lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.dap.core",
"lazyvim.plugins.extras.editor.aerial",
"lazyvim.plugins.extras.editor.aerial",
"lazyvim.plugins.extras.editor.fzf",
"lazyvim.plugins.extras.editor.harpoon2",
"lazyvim.plugins.extras.editor.navic",
"lazyvim.plugins.extras.formatting.prettier",
"lazyvim.plugins.extras.lang.clangd",
"lazyvim.plugins.extras.lang.elixir",
"lazyvim.plugins.extras.lang.git",
"lazyvim.plugins.extras.lang.go",
"lazyvim.plugins.extras.lang.java",
"lazyvim.plugins.extras.lang.json",
"lazyvim.plugins.extras.lang.markdown",
"lazyvim.plugins.extras.lang.nix",
"lazyvim.plugins.extras.lang.omnisharp",
"lazyvim.plugins.extras.lang.python",
"lazyvim.plugins.extras.lang.rust",
"lazyvim.plugins.extras.lang.tailwind",
"lazyvim.plugins.extras.lang.typescript"
"lazyvim.plugins.extras.lang.toml",
"lazyvim.plugins.extras.util.mini-hipatterns"
],
"news": {
"NEWS.md": "6077"
"NEWS.md": "6520"
},
"version": 6
}

7
lua/plugins/luarocks.lua Normal file
View File

@ -0,0 +1,7 @@
return {
-- {
-- "vhyrro/luarocks.nvim",
-- priority = 1000, -- Very high priority is required, luarocks.nvim should run as the first plugin in your config.
-- config = true,
-- },
}

14
lua/plugins/otter.lua Normal file
View File

@ -0,0 +1,14 @@
return {
-- {
-- "jmbuhr/otter.nvim",
-- dependencies = {
-- "hrsh7th/nvim-cmp",
-- "neovim/nvim-lspconfig",
-- "nvim-treesitter/nvim-treesitter",
-- },
-- lazy = false,
-- config = function()
-- require("otter").activate({ "javascript", "python", "rust" }, true, true, nil)
-- end,
-- },
}

View File

@ -6,16 +6,29 @@ return {
default_settings = {
-- rust-analyzer language server configuration
["rust-analyzer"] = {
-- rustfmt = {
-- overrideCommand = {
-- "leptosfmt",
-- "--stdin",
-- "--rustfmt",
-- },
-- },
cargo = {
targetDir = true,
buildScripts = {
enable = false,
},
},
procMacro = {
enable = true,
-- ignored = {
-- ["leptos_macro"] = { "component" },
-- },
},
checkOnSave = true,
-- check = {
-- command = "clippy",
-- },
check = {
command = "clippy",
},
},
},
},