laptop
Elias Almqvist 10 months ago
commit 1d169c635a
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. 8
      oh-my-zsh/.oh-my-zsh/aliases.sh

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

@ -14,6 +14,7 @@ M.treesitter = {
"markdown_inline", "markdown_inline",
"prisma", "prisma",
"haskell", "haskell",
"python",
}, },
indent = { indent = {
enable = true, enable = true,

@ -27,4 +27,12 @@ alias gc="git add -A && git commit -m"
# Shortcuts # Shortcuts
alias dots="cd $HOME/.dotfiles" alias dots="cd $HOME/.dotfiles"
# Very nice things
cd_gitroot() {
cd "$(git rev-parse --show-toplevel)"
}
alias cr="cd_gitroot"
alias dev="cd $HOME/Projects/almtech/ingenuity/" alias dev="cd $HOME/Projects/almtech/ingenuity/"

Loading…
Cancel
Save