aboutsummaryrefslogtreecommitdiff
path: root/vim/.vim/plugged/vimling/plugin/prose.vim
diff options
context:
space:
mode:
authorKumar Damani <damani.kumar@gmail.com>2019-05-16 22:16:09 +0000
committerKumar Damani <damani.kumar@gmail.com>2019-05-16 22:16:09 +0000
commit12564a8f73ebe721d415a04d36f7aac7091bea9d (patch)
treebbc8a6bf6aabe832b3ee435eaa605dcac655fc5f /vim/.vim/plugged/vimling/plugin/prose.vim
parent1241da7ab7a4e91248391ee9b045267bcbbeee4f (diff)
updating vimrc
Diffstat (limited to 'vim/.vim/plugged/vimling/plugin/prose.vim')
-rw-r--r--vim/.vim/plugged/vimling/plugin/prose.vim38
1 files changed, 0 insertions, 38 deletions
diff --git a/vim/.vim/plugged/vimling/plugin/prose.vim b/vim/.vim/plugged/vimling/plugin/prose.vim
deleted file mode 100644
index cf9470e..0000000
--- a/vim/.vim/plugged/vimling/plugin/prose.vim
+++ /dev/null
@@ -1,38 +0,0 @@
-let g:ProseOn=0
-
-function! ToggleProse()
- if !g:ProseOn
- call Prose()
- else
- call ProseOff()
- endif
-endfunction
-
-function! Prose()
- echo "Prose: On"
- let g:ProseOn=1
-
- noremap j gj
- noremap k gk
- noremap 0 g0
- noremap $ g$
- noremap A g$a
- noremap I g0i
- setlocal linebreak nonumber norelativenumber t_Co=0 foldcolumn=2
- hi! link FoldColumn Normal
-
-endfunction
-
-function! ProseOff()
- echo "Prose: Off"
- let g:ProseOn=0
-
- noremap j j
- noremap k k
- noremap 0 0
- noremap $ $
- noremap A A
- noremap I I
- setlocal nolinebreak number relativenumber t_Co=256 foldcolumn=0
-
-endfunction