Compare commits

...

8 commits

Author SHA1 Message Date
4b56685efc
Lazy: update setup code to match online Lazy docs
Some checks are pending
Send submodule updates to parent repo / update (main) (push) Waiting to run
Send submodule updates to parent repo / update (tiling) (push) Waiting to run
2025-05-10 10:58:14 +02:00
8c6bb614bf zig: add plugin to overwrite removals in nvim 0.11
Some checks failed
Send submodule updates to parent repo / update (main) (push) Has been cancelled
Send submodule updates to parent repo / update (tiling) (push) Has been cancelled
2025-04-20 11:03:50 +02:00
a124b15366 fixed 0.11 deprecations
Some checks failed
Send submodule updates to parent repo / update (main) (push) Has been cancelled
Send submodule updates to parent repo / update (tiling) (push) Has been cancelled
2025-04-18 15:45:26 +02:00
123281b16c lspconfig: setup zig 2025-04-18 15:45:17 +02:00
57b069c17b lsp: remove unused servers 2025-04-18 15:38:27 +02:00
e7adf3910e lspconfig: fix regression from afdc916
Some checks failed
Send submodule updates to parent repo / update (main) (push) Has been cancelled
Send submodule updates to parent repo / update (tiling) (push) Has been cancelled
2025-02-12 16:36:08 +01:00
3ef6aa1974 misc: remove whitespace damage 2025-02-12 16:33:32 +01:00
8c2ab48ed5 lapconfig: fix half-baked rename
Some checks failed
Send submodule updates to parent repo / update (main) (push) Has been cancelled
Send submodule updates to parent repo / update (tiling) (push) Has been cancelled
2025-02-01 22:01:10 +01:00
7 changed files with 12 additions and 8 deletions

View file

@ -1,7 +1,7 @@
require("vim-options")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",

View file

@ -10,6 +10,6 @@ return {
theme = "dragon"
})
vim.cmd("colorscheme kanagawa")
vim.cmd("colorscheme kanagawa-dragon")
end
}

View file

@ -8,13 +8,14 @@ return {
},
{
"williamboman/mason-lspconfig.nvim",
config = function()
local mason_lspconfig = require("mason")
local mason_lspconfig = require("mason-lspconfig")
mason_lspconfig.setup({
ensure_installed = { "clangd", "texlab", "lua_ls", "matlab_ls", "mesonlsp", "sqlls", "svlangserver", "ts_ls", "volar" }
ensure_installed = { "clangd", "lua_ls", "matlab_ls", "mesonlsp", "texlab", "ts_ls", "volar", "zls" }
})
end
}
}

View file

@ -21,7 +21,7 @@ return {
plugins = {
{
name = "@vue/typescript-plugin",
location = vue_language_server_path,
location = volar_path,
languages = { "vue" },
},
},
@ -29,5 +29,6 @@ return {
filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" },
})
lspconfig.volar.setup({})
lspconfig.zig.setup({})
end
}

View file

@ -9,7 +9,7 @@ return {
require("telescope").setup({})
local builtin = require("telescope.builtin")
vim.keymap.set("n", "<C-p>", builtin.find_files, {})
vim.keymap.set("n", "<C-f>", builtin.live_grep, {})
end

3
lua/plugins/zig.lua Normal file
View file

@ -0,0 +1,3 @@
return {
"ziglang/zig.vim"
}

View file

@ -1,4 +1,3 @@
vim.o.background = ""
vim.cmd("set number")
vim.cmd("set expandtab")
vim.cmd("set tabstop=2")