summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-06-30 15:15:57 +0200
committerEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-06-30 15:15:57 +0200
commit0cc322091c5fa0e3fe34c57d4ace5ac8a4e6d1d1 (patch)
tree5bd0241c2195a35b4acb37bf636379230a1fceb0 /nvim
parent74fee9f7c3a0d3ecae22393068f334b3431350fa (diff)
Dont block the textwidth in html
Diffstat (limited to 'nvim')
-rw-r--r--nvim/nvim/ftplugin/html.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/nvim/nvim/ftplugin/html.vim b/nvim/nvim/ftplugin/html.vim
index fc0d53a..6a56808 100644
--- a/nvim/nvim/ftplugin/html.vim
+++ b/nvim/nvim/ftplugin/html.vim
@@ -1,11 +1,2 @@
set tabstop=2 softtabstop=0 expandtab shiftwidth=2
set autoindent
-
-" Test some wrapping on the html
-setlocal textwidth=79
-setlocal formatoptions+=t
-
-" Highlight where the lines are more than 80 characters wide
-setlocal colorcolumn=80
-highlight ColorColumn ctermbg=LightGreen
-