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 metals
scalafmt scalafmt
sbt sbt
coursier
# formatters # formatters
shfmt shfmt

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

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

@ -6,7 +6,7 @@ local lspconfig = require("lspconfig")
local servers = { local servers = {
"html", "html",
"cssls", "cssls",
"tsserver", "ts_ls",
"clangd", "clangd",
"rust_analyzer", "rust_analyzer",
"vhdl_ls", "vhdl_ls",
@ -25,18 +25,3 @@ for _, lsp in ipairs(servers) do
capabilities = capabilities, capabilities = capabilities,
}) })
end 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