Compare commits

..

No commits in common. "884e2c688de0b6a16cbd34090f814a9b21cab130" and "1b49cc10131f01350998b69c6a6d1d2a30549b13" have entirely different histories.

2 changed files with 1 additions and 16 deletions

View File

@ -632,9 +632,7 @@ require('lazy').setup({
-- - settings (table): Override the default settings passed when initializing the server.
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
local servers = {
clangd = {
cmd = { 'clangd', '--offset-encoding=utf-16' },
},
clangd = {},
-- gopls = {},
-- pyright = {},
-- rust_analyzer = {},
@ -679,7 +677,6 @@ require('lazy').setup({
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'stylua', -- Used to format Lua code
'clang-format', -- Used to format C/C++ files
})
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
@ -732,8 +729,6 @@ require('lazy').setup({
end,
formatters_by_ft = {
lua = { 'stylua' },
c = { 'clang-format' },
cpp = { 'clang-format' },
-- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" },
--

View File

@ -35,14 +35,4 @@ return {
require('nvim-tree').setup {}
end,
},
{
'windwp/nvim-autopairs',
event = 'InsertEnter',
config = true,
-- use opts = {} for passing setup options
-- this is equivalent to setup({}) function
},
{
'github/copilot.vim',
},
}