diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2018-07-19 16:47:49 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2018-07-19 16:47:49 +0200 |
commit | 44f34216d1c6c90afa3606ea26b911393d78a6c5 (patch) | |
tree | f034171362a1b6bffe7390dac898ad4f1f8434e0 /nvim | |
parent | 26eb230ead5149d3f98a8fafef2d71eaaa013e92 (diff) | |
download | dotfiles-44f34216d1c6c90afa3606ea26b911393d78a6c5.tar.xz |
nvim: set colorcolumn=100
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/init.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 042aade..aa30071 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -77,6 +77,7 @@ set linebreak " Don’t wrap lines in the middle of a word set spelllang=en_us set backupdir=$XDG_DATA_HOME/nvim/backup " Don't write backups in current dir set termguicolors " Use -guifg/-guibg attributes (24-bit colors) +set colorcolumn=100 " Show colored line at column 100 set tabstop=4 set shiftwidth=4 |