Skip to content

Commit 9cf888f

Browse files
MN-nagyoriori1703
authored andcommitted
Refactor: updated colorcolum to a more appropriate value
1 parent 50a0312 commit 9cf888f

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

init.lua

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ vim.o.confirm = true
168168
vim.o.wrap = false
169169

170170
-- Highlight max chars per line
171-
-- vim.o.colorcolumn = '100'
171+
-- vim.o.colorcolumn = '120'
172172

173173
-- [[ Basic Keymaps ]]
174174
-- See `:help vim.keymap.set()`
@@ -250,16 +250,6 @@ vim.api.nvim_create_autocmd('BufWritePre', {
250250
end,
251251
})
252252

253-
-- disable automatic comment on newline
254-
-- vim.api.nvim_create_autocmd('FileType', {
255-
-- desc = 'Disable automatic comment on newline',
256-
-- group = vim.api.nvim_create_augroup('kickstart-disable-auto-comment', { clear = true }),
257-
-- pattern = '*',
258-
-- callback = function()
259-
-- vim.opt_local.formatoptions:remove { 'c', 'r', 'o' }
260-
-- end,
261-
-- })
262-
263253
-- [[ Install `lazy.nvim` plugin manager ]]
264254
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
265255
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'

0 commit comments

Comments
 (0)