8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and cont 8000 act its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not sure why this bit of code works in .vim files and not in anything else.
wincent/aspects/nvim/files/.config/nvim/init.lua
Line 142 in 4e2e685
I took it from one of your videos. So what I have in my set up is:
vim.opt.colorcolumn = '79' vim.opt_local.colorcolumn = '+' .. vim.fn.join(vim.fn.range(0,254), ',+')
The text was updated successfully, but these errors were encountered:
I made a mistake. Instead of setting 'textwidth' to 79 I set 'colorcolumn' to 79. Sorry for the noise.
- vim.opt.colorcolumn = '79' + vim.opt.textwidth = 79 vim.opt_local.colorcolumn = '+' .. vim.fn.join(vim.fn.range(0,254), ',+')
Sorry, something went wrong.
Yep, those + values are relative to the textwidth.
+
textwidth
No branches or pull requests
I'm not sure why this bit of code works in .vim files and not in anything else.
wincent/aspects/nvim/files/.config/nvim/init.lua
Line 142 in 4e2e685
I took it from one of your videos. So what I have in my set up is:
The text was updated successfully, but these errors were encountered: