diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2025-03-24 21:04:43 +0000 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2025-03-24 21:04:43 +0000 |
commit | 295e74d25a9bebbb9d5c1fa8defee511db29496e (patch) | |
tree | c87205405cdca36de5ac4f8f2d13536f815d7897 /roff.vim |
Diffstat (limited to 'roff.vim')
-rw-r--r-- | roff.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roff.vim b/roff.vim new file mode 100644 index 0000000..64b510e --- /dev/null +++ b/roff.vim @@ -0,0 +1,12 @@ +" roff settings very cool! +function Roffsetup() + set wrap + set spell + set spelllang=en_gb + nnoremap j gj + nnoremap k gk + nnoremap k gk + + syntax match roffmac /^\..*$/ + highlight link roffmac Title +endfunction |