Files
nvim-config/lua/plugins/language-tools.lua
T
khodowany 0e398930f1 Reformat
2026-05-03 10:13:43 -05:00

72 lines
1.2 KiB
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
opts = {
ensure_installed = {
"c",
"cpp",
"cmake",
"python",
"lua",
"vim",
"bash",
"javascript",
"perl",
"rust",
},
highlight = {
enable = true,
},
},
},
{
"mason-org/mason.nvim",
opts = {
ensure_installed = {
"clangd",
"cmake-language-server",
"codelldb",
"pyright",
"typescript-language-server",
"perlnavigator",
"rust-analyzer",
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
inlay_hints = { enabled = false },
},
},
{
"akinsho/toggleterm.nvim",
version = "*",
opts = {
size = 30,
open_mapping = [[<c-\>]],
hide_numbers = true,
shade_terminals = true,
direction = "horizontal",
float_opts = {
border = "rounded",
},
},
},
{
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
c = { "clang_format" },
cpp = { "clang_format" },
},
formatters = {
clang_format = {
command = "clang-format",
},
},
},
},
}