Refactor: updated colorcolum to a more appropriate value
This commit is contained in:
parent
c2347a5ec6
commit
c61d50d8b4
12
init.lua
12
init.lua
|
@ -170,7 +170,7 @@ vim.o.confirm = true
|
||||||
vim.o.wrap = false
|
vim.o.wrap = false
|
||||||
|
|
||||||
-- Highlight max chars per line
|
-- Highlight max chars per line
|
||||||
-- vim.o.colorcolumn = '100'
|
-- vim.o.colorcolumn = '120'
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
-- See `:help vim.keymap.set()`
|
-- See `:help vim.keymap.set()`
|
||||||
|
@ -254,16 +254,6 @@ vim.api.nvim_create_autocmd('BufWritePre', {
|
||||||
end,
|
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 ]]
|
-- [[ Install `lazy.nvim` plugin manager ]]
|
||||||
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
|
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
|
||||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||||
|
|
Loading…
Reference in New Issue