Refactor: updated colorcolum to a more appropriate value

pull/1642/head
MN-nagy 4 days ago
parent c2347a5ec6
commit c61d50d8b4

@ -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'

Loading…
Cancel
Save