diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-10-03 13:37:17 -0400 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-10-03 13:37:17 -0400 |
commit | 67968363708f82d471f49f119a4713c944173ff8 (patch) | |
tree | 3f97dfa65da2672fcb094e6d41dd082ca8eab1f4 | |
parent | a44145a27b7708e18daf8f261a7d4fbac7f1993b (diff) |
Moves ftplugins to after file for vim
-rw-r--r-- | bash/.bashrc | 2 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/asm.vim (renamed from vim/.vim/ftplugin/asm.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/by.vim (renamed from vim/.vim/ftplugin/by.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/c.vim (renamed from vim/.vim/ftplugin/c.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/conf.vim (renamed from vim/.vim/ftplugin/conf.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/go.vim (renamed from vim/.vim/ftplugin/go.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/haskell.vim | 6 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/java.vim (renamed from vim/.vim/ftplugin/java.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/mail.vim (renamed from vim/.vim/ftplugin/mail.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/nroff.vim | 2 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/python.vim (renamed from vim/.vim/ftplugin/python.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/rst.vim | 6 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/tex.vim (renamed from vim/.vim/ftplugin/tex.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/tr.vim | 2 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/tree.vim (renamed from vim/.vim/ftplugin/tree.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/txt.vim (renamed from vim/.vim/ftplugin/txt.vim) | 0 | ||||
-rw-r--r-- | vim/.vim/ftplugin/tr.vim | 1 |
17 files changed, 18 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index 391bc5e..f1463cc 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -1,6 +1,8 @@ # .bashrc set -o vi +PATH=~/bin:$PATH + source ~/.pass_completion HISTSIZE=1000 HISTFILESIZE=8000 diff --git a/vim/.vim/ftplugin/asm.vim b/vim/.vim/after/ftplugin/asm.vim index e69de29..e69de29 100644 --- a/vim/.vim/ftplugin/asm.vim +++ b/vim/.vim/after/ftplugin/asm.vim diff --git a/vim/.vim/ftplugin/by.vim b/vim/.vim/after/ftplugin/by.vim index 7f2b61c..7f2b61c 100644 --- a/vim/.vim/ftplugin/by.vim +++ b/vim/.vim/after/ftplugin/by.vim diff --git a/vim/.vim/ftplugin/c.vim b/vim/.vim/after/ftplugin/c.vim index a445f6f..a445f6f 100644 --- a/vim/.vim/ftplugin/c.vim +++ b/vim/.vim/after/ftplugin/c.vim diff --git a/vim/.vim/ftplugin/conf.vim b/vim/.vim/after/ftplugin/conf.vim index 7f2b61c..7f2b61c 100644 --- a/vim/.vim/ftplugin/conf.vim +++ b/vim/.vim/after/ftplugin/conf.vim diff --git a/vim/.vim/ftplugin/go.vim b/vim/.vim/after/ftplugin/go.vim index 736e482..736e482 100644 --- a/vim/.vim/ftplugin/go.vim +++ b/vim/.vim/after/ftplugin/go.vim diff --git a/vim/.vim/after/ftplugin/haskell.vim b/vim/.vim/after/ftplugin/haskell.vim new file mode 100644 index 0000000..109cd5b --- /dev/null +++ b/vim/.vim/after/ftplugin/haskell.vim @@ -0,0 +1,6 @@ +" Tab specific option +set tabstop=8 "A tab is 8 spaces +set expandtab "Always uses spaces instead of tabs +set softtabstop=4 "Insert 4 spaces when tab is pressed +set shiftwidth=4 "An indent is 4 spaces +set shiftround "Round indent to nearest shiftwidth multiple diff --git a/vim/.vim/ftplugin/java.vim b/vim/.vim/after/ftplugin/java.vim index 736e482..736e482 100644 --- a/vim/.vim/ftplugin/java.vim +++ b/vim/.vim/after/ftplugin/java.vim diff --git a/vim/.vim/ftplugin/mail.vim b/vim/.vim/after/ftplugin/mail.vim index c6e2b8a..c6e2b8a 100644 --- a/vim/.vim/ftplugin/mail.vim +++ b/vim/.vim/after/ftplugin/mail.vim diff --git a/vim/.vim/after/ftplugin/nroff.vim b/vim/.vim/after/ftplugin/nroff.vim new file mode 100644 index 0000000..031c8d9 --- /dev/null +++ b/vim/.vim/after/ftplugin/nroff.vim @@ -0,0 +1,2 @@ +set spell +autocmd BufWritePost * silent! !grap % | pic | tbl | eqn | troff -ms | grops > %:r.ps diff --git a/vim/.vim/ftplugin/python.vim b/vim/.vim/after/ftplugin/python.vim index 643e63d..643e63d 100644 --- a/vim/.vim/ftplugin/python.vim +++ b/vim/.vim/after/ftplugin/python.vim diff --git a/vim/.vim/after/ftplugin/rst.vim b/vim/.vim/after/ftplugin/rst.vim new file mode 100644 index 0000000..c5fc1a9 --- /dev/null +++ b/vim/.vim/after/ftplugin/rst.vim @@ -0,0 +1,6 @@ +" Tab specific option +set tabstop=4 "A tab is 8 spaces +set expandtab "Always uses spaces instead of tabs +set softtabstop=4 "Insert 4 spaces when tab is pressed +set shiftwidth=4 "An indent is 4 spaces +set shiftround "Round indent to nearest shiftwidth multiple diff --git a/vim/.vim/ftplugin/tex.vim b/vim/.vim/after/ftplugin/tex.vim index 87f4512..87f4512 100644 --- a/vim/.vim/ftplugin/tex.vim +++ b/vim/.vim/after/ftplugin/tex.vim diff --git a/vim/.vim/after/ftplugin/tr.vim b/vim/.vim/after/ftplugin/tr.vim new file mode 100644 index 0000000..3098f3d --- /dev/null +++ b/vim/.vim/after/ftplugin/tr.vim @@ -0,0 +1,2 @@ +set spell +autocmd BufWritePost * !pic % | tbl | eqn | troff -ms | grops > %:r.ps diff --git a/vim/.vim/ftplugin/tree.vim b/vim/.vim/after/ftplugin/tree.vim index 073abf6..073abf6 100644 --- a/vim/.vim/ftplugin/tree.vim +++ b/vim/.vim/after/ftplugin/tree.vim diff --git a/vim/.vim/ftplugin/txt.vim b/vim/.vim/after/ftplugin/txt.vim index 7dcafeb..7dcafeb 100644 --- a/vim/.vim/ftplugin/txt.vim +++ b/vim/.vim/after/ftplugin/txt.vim diff --git a/vim/.vim/ftplugin/tr.vim b/vim/.vim/ftplugin/tr.vim deleted file mode 100644 index 87f4512..0000000 --- a/vim/.vim/ftplugin/tr.vim +++ /dev/null @@ -1 +0,0 @@ -set spell |