i dont even know argh

This commit is contained in:
Christian Nieves
2024-01-10 18:27:58 +00:00
parent 9ce43365b6
commit bad2e79905
6 changed files with 35 additions and 38 deletions

View File

@ -38,8 +38,11 @@ return {
require("crates").setup()
end,
},
{ "simrat39/rust-tools.nvim", ft = "rust" },
{
"mrcjkb/rustaceanvim",
version = "^3", -- Recommended
ft = { "rust" },
},
{
"rafcamlet/nvim-luapad",
config = function()

View File

@ -11,7 +11,6 @@ return {
local lsps = {
-- "lua_ls",
"html",
"rust_analyzer",
"marksman",
"sqlls",
"bashls",
@ -48,11 +47,6 @@ return {
function(server_name) -- default handler (optional)
require("lspconfig")[server_name].setup({})
end,
-- Next, you can provide a dedicated handler for specific servers.
-- For example, a handler override for the `rust_analyzer`:
["rust_analyzer"] = function()
require("rust-tools").setup({})
end,
["omnisharp_mono"] = function()
require("lspconfig").omnisharp_mono.setup({
handlers = {

View File

@ -1,8 +1,11 @@
return {
"folke/zen-mode.nvim",
opts = {
window = {
width = 0.4,
},
plugins = {
tmux = { enabled = false },
tmux = { enabled = true },
},
},
keys = { { "<C-z>", ":ZenMode<CR>" } },