tangled
alpha
login
or
join now
seth.computer
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
vimrc: word wrapping by default and in markdown
seth.computer
2 years ago
5cf55576
dfdb4400
verified
This commit was signed with the committer's
known signature
.
seth.computer
SSH Key Fingerprint:
SHA256:l+TmfElcKWTGSvrmVQkRAqucAII4w28uPbCCkXB+x7o=
+6
1 changed file
expand all
collapse all
unified
split
vim
vimrc
+6
vim/vimrc
···
12
12
set expandtab
13
13
set hidden
14
14
set nowrap
15
15
+
16
16
+
if &filetype == "" || &filetype == "markdown" || &filetype == "text"
17
17
+
set wrap
18
18
+
set linebreak
19
19
+
set nolist
20
20
+
endif