diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-04-21 11:40:41 -0400 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-04-21 11:40:41 -0400 |
commit | 43ad662f2aa87da22053bdfd4244ec3d710d8c9f (patch) | |
tree | f1cc9f2a5d5d926000e9c7a687d64bcecd362ab2 | |
parent | b25579943df28616d757c73ecc5b087e04ddf99f (diff) |
Moves vim ftplugins and Edits .vimrc accordingly
-rw-r--r-- | vim/.vim/ftplugin/asm.vim (renamed from vim/.vim/after/ftplugin/asm.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/ftplugin/by.vim (renamed from vim/.vim/after/ftplugin/by.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/ftplugin/c.vim (renamed from vim/.vim/after/ftplugin/c.vim) | 1 | ||||
-rw-r--r-- | vim/.vim/ftplugin/conf.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/go.vim (renamed from vim/.vim/after/ftplugin/go.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/ftplugin/java.vim (renamed from vim/.vim/after/ftplugin/java.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/ftplugin/mail.vim | 3 | ||||
-rw-r--r-- | vim/.vim/ftplugin/python.vim | 7 | ||||
-rw-r--r-- | vim/.vim/ftplugin/tex.vim (renamed from vim/.vim/after/ftplugin/tex.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/ftplugin/tr.vim (renamed from vim/.vim/after/ftplugin/tr.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/ftplugin/tree.vim | 13 | ||||
-rw-r--r-- | vim/.vim/ftplugin/txt.vim (renamed from vim/.vim/after/ftplugin/txt.vim) | 0 | ||||
-rw-r--r-- | vim/.vimrc | 2 |
13 files changed, 27 insertions, 1 deletions
diff --git a/vim/.vim/after/ftplugin/asm.vim b/vim/.vim/ftplugin/asm.vim index e69de29..e69de29 100644 --- a/vim/.vim/after/ftplugin/asm.vim +++ b/vim/.vim/ftplugin/asm.vim diff --git a/vim/.vim/after/ftplugin/by.vim b/vim/.vim/ftplugin/by.vim index 7f2b61c..7f2b61c 100644 --- a/vim/.vim/after/ftplugin/by.vim +++ b/vim/.vim/ftplugin/by.vim diff --git a/vim/.vim/after/ftplugin/c.vim b/vim/.vim/ftplugin/c.vim index 736e482..a445f6f 100644 --- a/vim/.vim/after/ftplugin/c.vim +++ b/vim/.vim/ftplugin/c.vim @@ -1,2 +1,3 @@ set tw=0 set cindent +set nospell diff --git a/vim/.vim/ftplugin/conf.vim b/vim/.vim/ftplugin/conf.vim new file mode 100644 index 0000000..7f2b61c --- /dev/null +++ b/vim/.vim/ftplugin/conf.vim @@ -0,0 +1,2 @@ +set nospell +set tw=0 diff --git a/vim/.vim/after/ftplugin/go.vim b/vim/.vim/ftplugin/go.vim index 736e482..736e482 100644 --- a/vim/.vim/after/ftplugin/go.vim +++ b/vim/.vim/ftplugin/go.vim diff --git a/vim/.vim/after/ftplugin/java.vim b/vim/.vim/ftplugin/java.vim index 736e482..736e482 100644 --- a/vim/.vim/after/ftplugin/java.vim +++ b/vim/.vim/ftplugin/java.vim diff --git a/vim/.vim/ftplugin/mail.vim b/vim/.vim/ftplugin/mail.vim new file mode 100644 index 0000000..c6e2b8a --- /dev/null +++ b/vim/.vim/ftplugin/mail.vim @@ -0,0 +1,3 @@ +set softtabstop=4 +set shiftwidth=4 +set expandtab diff --git a/vim/.vim/ftplugin/python.vim b/vim/.vim/ftplugin/python.vim new file mode 100644 index 0000000..643e63d --- /dev/null +++ b/vim/.vim/ftplugin/python.vim @@ -0,0 +1,7 @@ +set nospell +set tw=0 +set tabstop=8 +set softtabstop=8 +set shiftwidth=8 +set noexpandtab + diff --git a/vim/.vim/after/ftplugin/tex.vim b/vim/.vim/ftplugin/tex.vim index 87f4512..87f4512 100644 --- a/vim/.vim/after/ftplugin/tex.vim +++ b/vim/.vim/ftplugin/tex.vim diff --git a/vim/.vim/after/ftplugin/tr.vim b/vim/.vim/ftplugin/tr.vim index 87f4512..87f4512 100644 --- a/vim/.vim/after/ftplugin/tr.vim +++ b/vim/.vim/ftplugin/tr.vim diff --git a/vim/.vim/ftplugin/tree.vim b/vim/.vim/ftplugin/tree.vim new file mode 100644 index 0000000..073abf6 --- /dev/null +++ b/vim/.vim/ftplugin/tree.vim @@ -0,0 +1,13 @@ +set tw=0 +set nolist +set nospell + +map pp a, 01<esc> +map PP a, 09<esc> +map tt a, 06<esc> +map bb a, 07<esc> +map ss a, 03<esc> +map SS a, 04<esc> +map nn a, 05<esc> +map vv a, 02<esc> +map cc a, Cull<esc> diff --git a/vim/.vim/after/ftplugin/txt.vim b/vim/.vim/ftplugin/txt.vim index 7dcafeb..7dcafeb 100644 --- a/vim/.vim/after/ftplugin/txt.vim +++ b/vim/.vim/ftplugin/txt.vim @@ -22,4 +22,4 @@ colorscheme default au BufRead,BufNewFile *.go set filetype=go -set statusline+=%{WordCount#WordCount()} +filetype plugin on |