This commit is contained in:
iris committed 2026-02-16 16:52:03 -05:00
commit 5b93f815b8
3 files changed
+28 -24

No files matched your search

+1 -1
View File
@@ -86,7 +86,7 @@ lo.cmd("<C-,>", "res -1")
lo.cmd("<C-.>", "res +1") lo.cmd("<C-.>", "res +1")
-- ascension (paste without replacing clipboard) -- ascension (paste without replacing clipboard)
m.map("x", "<leader>p", "\"_dhp") m.map("x", "<leader>p", "\"_dP")
-- keep centered while moving around -- keep centered while moving around
m.nmap("<C-u>", "<C-u>zz") m.nmap("<C-u>", "<C-u>zz")
+6 -6
View File
@@ -1,10 +1,10 @@
return { return {
-- { {
-- "mrcjkb/rustaceanvim", "mrcjkb/rustaceanvim",
-- ft = { "rust" }, ft = { "rust" },
-- version = '^7', version = '^7',
-- lazy = false, lazy = false,
-- }, },
{ {
"windwp/nvim-autopairs", "windwp/nvim-autopairs",
config = function() require "nvim-autopairs".setup {} end config = function() require "nvim-autopairs".setup {} end
+21 -17
View File
@@ -1,9 +1,10 @@
local config = function() local config = function()
local lsp = vim.lsp
vim.g.markdown_fenced_languages = { vim.g.markdown_fenced_languages = {
"ts=typescript" "ts=typescript"
} }
vim.lsp.config("lua_ls", { lsp.config["lua_ls"] = {
settings = { settings = {
Lua = { Lua = {
diagnostics = { diagnostics = {
@@ -18,17 +19,16 @@ local config = function()
}, },
}, },
}, },
}) }
vim.lsp.enable("denols") lsp.enable("denols")
vim.lsp.enable("csharp_ls") lsp.enable("csharp_ls")
vim.lsp.enable("rust_analyzer")
vim.lsp.enable("angularls") lsp.enable("angularls")
vim.lsp.enable("clangd") lsp.enable("clangd")
vim.lsp.enable("asm_lsp") lsp.enable("asm_lsp")
vim.lsp.enable("pylsp") lsp.enable("pylsp")
vim.lsp.enable("kotlin_language_server") lsp.enable("kotlin_language_server")
vim.lsp.config("texlab", { lsp.config["texlab"] = {
settings = { settings = {
texlab = { texlab = {
build = { build = {
@@ -37,17 +37,21 @@ local config = function()
} }
} }
} }
}) }
vim.lsp.enable("wgsl_analyzer") lsp.enable("wgsl_analyzer")
vim.lsp.enable("hls") lsp.enable("hls")
vim.lsp.enable("slint_lsp") lsp.enable("slint_lsp")
vim.lsp.config("tinymist", { lsp.config["tinymist"] = {}
lsp.config["wgsl_analyzer"] = {}
lsp.config["hls"] = {}
lsp.config["slint_lsp"] = {}
lsp.config["tinymist"] = {
root_dir = "-", root_dir = "-",
settings = { settings = {
exportPdf = "onSave", exportPdf = "onSave",
formatterMode = "typstyle", formatterMode = "typstyle",
} }
}) }
require('mason').setup() require('mason').setup()
require('mason-lspconfig').setup() require('mason-lspconfig').setup()