Compare commits

...

3 Commits

@ -46,6 +46,7 @@ vim.opt.ts = 4
vim.opt.expandtab = true
vim.opt.tw = 100
vim.opt.colorcolumn = "+1"
vim.opt.termguicolors = true
vim.opt.pumheight = 5
-- Disable semantic tokens
@ -188,6 +189,8 @@ require("lazy").setup({
npairs.remove_rule("`")
end,
},
"christoomey/vim-tmux-navigator",
"kana/vim-textobj-user",
{
"GCBallesteros/vim-textobj-hydrogen",
dependencies = {
@ -430,6 +433,7 @@ require("lazy").setup({
},
},
-- gopls = {},
hls = {},
jdtls = {},
pyright = {},
bashls = { dependencies = "shellcheck" },
@ -482,6 +486,7 @@ require("lazy").setup({
"black",
"isort",
"clang-format",
"ormolu",
"beautysh",
})
require("mason-tool-installer").setup({ ensure_installed = ensure_installed })
@ -520,6 +525,7 @@ require("lazy").setup({
rust = { "rustfmt" },
cpp = { "clang-format" },
c = { "clang-format" },
haskell = { "ormolu" },
},
},
},
@ -706,3 +712,7 @@ require("lazy").setup({
end,
},
})
--Disable semantic highlights
for _, group in ipairs(vim.fn.getcompletion("@lsp", "highlight")) do
vim.api.nvim_set_hl(0, group, {})
end

Loading…
Cancel
Save