mirror of
https://github.com/harivansh-afk/dots.git
synced 2026-04-15 06:04:41 +00:00
Centralize dotfiles from ~ into stow packages: - zsh: .zshrc, .zshenv - git: .gitconfig - nvim: init.lua, lua/, plugin/, after/, lazy-lock.json - tmux: tmux.conf, session-list.sh - karabiner: karabiner.json - ghostty: config.ghostty - claude: CLAUDE.md, settings.json, settings.local.json, statusline.sh, 30 commands
21 lines
512 B
Lua
21 lines
512 B
Lua
return {
|
|
{ "neovim/nvim-lspconfig", lazy = false },
|
|
{ "williamboman/mason.nvim", lazy = false, opts = {} },
|
|
{
|
|
"williamboman/mason-lspconfig.nvim",
|
|
lazy = false,
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua_ls",
|
|
"pyright",
|
|
"rust_analyzer",
|
|
"gopls",
|
|
"clangd",
|
|
"bashls",
|
|
"jsonls",
|
|
"html",
|
|
"cssls",
|
|
},
|
|
},
|
|
},
|
|
}
|