fix: Treesitter stuff

laptop
Elias Almqvist 10 months ago
parent 4185700ff5
commit f4892ffc16
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 2
      nvchad/.config/nvim/lua/custom/configs/lspconfig.lua
  2. 1
      nvchad/.config/nvim/lua/custom/configs/overrides.lua
  3. 4
      oh-my-zsh/.oh-my-zsh/aliases.sh

@ -4,7 +4,7 @@ local capabilities = require("plugins.configs.lspconfig").capabilities
local lspconfig = require "lspconfig"
-- if you just want default config for the servers then put them in a table
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls", "bashls" }
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls", "bashls", "prismals", "pyright" }
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {

@ -12,6 +12,7 @@ M.treesitter = {
"c",
"markdown",
"markdown_inline",
"prisma",
},
indent = {
enable = true,

@ -24,3 +24,7 @@ alias gdb-multiarch="arm-none-eabi-gdb"
# Git stuff
alias gc="git add -A && git commit -m"
# Shortcuts
alias dots="cd $HOME/.dotfiles"
alias dev="cd $HOME/Projects/almtech/ingenuity/"

Loading…
Cancel
Save