1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Dan Barber
55a4253944 Disable format on save 2024-01-09 15:48:59 -06:00
Dan Barber
577223ef3a Use Solorgraph as the Ruby LSP 2024-01-09 15:47:25 -06:00
Dan Barber
b3336f772d Switch to my own fork of colortils
Until the original dev merges the changelogs.
2024-01-09 15:46:59 -06:00
3 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
return {
"max397574/colortils.nvim",
"danbee/colortils.nvim",
cmd = "Colortils",
config = function()
require("colortils").setup()

View File

@ -1 +1 @@
require("lspconfig").ruby_ls.setup({})
require("lspconfig").solargraph.setup({})

View File

@ -35,8 +35,8 @@ return {
})
-- Format on save
vim.api.nvim_create_autocmd("BufWritePre", {
command = "lua vim.lsp.buf.format()",
})
-- vim.api.nvim_create_autocmd("BufWritePre", {
-- command = "lua vim.lsp.buf.format()",
-- })
end,
}