Compare commits

...

3 Commits

  1. 1
      nix-darwin/home.nix
  2. 46
      nvchad/.config/nvim/lua/chadrc.lua
  3. 3
      nvchad/.config/nvim/lua/configs/conform.lua
  4. 17
      nvchad/.config/nvim/lua/configs/lspconfig.lua

@ -165,6 +165,7 @@
metals
scalafmt
sbt
coursier
# formatters
shfmt

@ -34,27 +34,31 @@ local function split_string(s)
return t
end
M.ui = {
theme = "ayu_dark",
theme_toggle = { "ayu_dark", "blossom_light" },
hl_override = highlights.override,
hl_add = highlights.add,
statusline = {
enabled = true,
theme = "vscode",
},
hl_override = {
NvDashAscii = { bg = "blue", fg = "white" },
},
nvdash = {
load_on_startup = true,
header = custom_logo,
width = 100,
},
M = {
base46 = {
theme = "onenord",
theme_toggle = { "onenord", "blossom_light" },
},
ui = {
hl_override = highlights.override,
hl_add = highlights.add,
statusline = {
enabled = true,
theme = "vscode",
},
hl_override = {
NvDashAscii = { bg = "blue", fg = "white" },
},
nvdash = {
load_on_startup = true,
header = custom_logo,
width = 100,
},
}
}
return M

@ -5,6 +5,9 @@ local options = {
-- Divine Intellect Languages
lua = { "stylua" },
-- based
scala = { "scalafmt" },
-- Web Dev shit
javascript = { "prettier" },
typescript = { "prettier" },

@ -6,7 +6,7 @@ local lspconfig = require("lspconfig")
local servers = {
"html",
"cssls",
"tsserver",
"ts_ls",
"clangd",
"rust_analyzer",
"vhdl_ls",
@ -25,18 +25,3 @@ for _, lsp in ipairs(servers) do
capabilities = capabilities,
})
end
-- typescript
-- lspconfig.tsserver.setup({
-- on_attach = on_attach,
-- on_init = on_init,
-- capabilities = capabilities,
-- })
-- Haskell
-- lspconfig.hls.setup({
-- on_attach = on_attach,
-- on_init = on_init,
-- capabilities = capabilities,
-- filetypes = { "haskell", "lhaskell", "cabal" },
-- })

Loading…
Cancel
Save