feat: TailwindCSS + other stuff with NvChad

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

@ -5,7 +5,7 @@ local M = {}
local highlights = require "custom.highlights"
M.ui = {
theme = "one_light",
theme = "onedark",
theme_toggle = { "onedark", "one_light" },
hl_override = highlights.override,

@ -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", "hls" }
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls", "hls", "tailwindcss" }
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup({

@ -21,3 +21,10 @@ alias gdb-multiarch="arm-none-eabi-gdb"
# Git stuff
alias gc="git add -A && git commit -m"
# Very nice things
cd_gitroot() {
cd "$(git rev-parse --show-toplevel)"
}
alias cr="cd_gitroot"

Loading…
Cancel
Save