Lastest changes

This commit is contained in:
Wil Simpson 2023-07-04 14:34:42 -04:00
parent 8693bde880
commit 2870f89f1e
6 changed files with 11 additions and 22 deletions

View file

@ -198,8 +198,8 @@ require('lazy').setup({
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
-- These are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them.
-- require 'kickstart.plugins.autoformat',
-- require 'kickstart.plugins.debug',
require 'kickstart.plugins.autoformat',
require 'kickstart.plugins.debug',
-- NOTE: The import below automatically adds your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping
@ -451,7 +451,7 @@ local servers = {
clangd = {},
gopls = {},
-- solargraph = {},
ruby_ls = {},
-- ruby_ls = {},
sqlls = {},
angularls = {},
bashls = {},
@ -548,7 +548,7 @@ cmp.setup {
},
}
vim.cmd [[autocmd BufWritePre * lua vim.lsp.buf.format()]]
-- vim.cmd [[autocmd BufWritePre * lua vim.lsp.buf.format()]]
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et