From c61d50d8b478acfe6b3790520144100d71ad0236 Mon Sep 17 00:00:00 2001 From: MN-nagy Date: Mon, 21 Jul 2025 01:33:07 +0300 Subject: [PATCH] Refactor: updated colorcolum to a more appropriate value --- init.lua | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/init.lua b/init.lua index 42c1fca5..28db289d 100644 --- a/init.lua +++ b/init.lua @@ -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'