File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ vim.o.confirm = true
168168vim .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
265255local lazypath = vim .fn .stdpath ' data' .. ' /lazy/lazy.nvim'
You can’t perform that action at this time.
0 commit comments