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 @@ -170,7 +170,7 @@ vim.o.confirm = true
170170vim .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
269259local lazypath = vim .fn .stdpath ' data' .. ' /lazy/lazy.nvim'
You can’t perform that action at this time.
0 commit comments