|
|
|
@ -170,7 +170,7 @@ vim.o.confirm = true
|
|
|
|
|
vim.o.wrap = false
|
|
|
|
|
|
|
|
|
|
-- Highlight max chars per line
|
|
|
|
|
-- vim.o.colorcolumn = '100'
|
|
|
|
|
-- vim.o.colorcolumn = '120'
|
|
|
|
|
|
|
|
|
|
-- [[ Basic Keymaps ]]
|
|
|
|
|
-- See `:help vim.keymap.set()`
|
|
|
|
@ -254,16 +254,6 @@ vim.api.nvim_create_autocmd('BufWritePre', {
|
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- disable automatic comment on newline
|
|
|
|
|
-- vim.api.nvim_create_autocmd('FileType', {
|
|
|
|
|
-- desc = 'Disable automatic comment on newline',
|
|
|
|
|
-- group = vim.api.nvim_create_augroup('kickstart-disable-auto-comment', { clear = true }),
|
|
|
|
|
-- pattern = '*',
|
|
|
|
|
-- callback = function()
|
|
|
|
|
-- vim.opt_local.formatoptions:remove { 'c', 'r', 'o' }
|
|
|
|
|
-- end,
|
|
|
|
|
-- })
|
|
|
|
|
|
|
|
|
|
-- [[ Install `lazy.nvim` plugin manager ]]
|
|
|
|
|
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
|
|
|
|
|
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
|
|
|
|