Skip to content

Commit c61d50d

Browse files
committed
Refactor: updated colorcolum to a more appropriate value
1 parent c2347a5 commit c61d50d

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
@@ -170,7 +170,7 @@ vim.o.confirm = true
170170
vim.o.wrap = false
171171

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

175175
-- [[ Basic Keymaps ]]
176176
-- See `:help vim.keymap.set()`
@@ -254,16 +254,6 @@ vim.api.nvim_create_autocmd('BufWritePre', {
254254
end,
255255
})
256256

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

0 commit comments

Comments
 (0)