mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
* Neovim: Backup original LazyVim setup to .config/nvim.lazy.d * Neovim: Currently done with basic completions and LSP * Git: Always use ssh to connect github remote * Zsh: Add more antidots config
22 lines
786 B
Lua
22 lines
786 B
Lua
--- Available LSP goes here
|
|
--- Check https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md
|
|
--- for available server and name
|
|
local servers = {
|
|
"arduino_language_server", -- Arduino
|
|
"bashls", -- Bash
|
|
"clangd", -- C/C++
|
|
"cmake", -- CMake
|
|
"eslint", -- JavaScript
|
|
"gopls", -- Go
|
|
"html", -- HTML
|
|
"julials", -- Julia
|
|
"lua_ls", -- Lua
|
|
"omnisharp", -- C# & F#
|
|
"powershell_es", -- PowerShell
|
|
"pyright", -- Python
|
|
"rust_analyzer", -- Rust
|
|
"taplo", -- TOML
|
|
"vimls", -- vimscript
|
|
}
|
|
|
|
return servers
|