aboutsummaryrefslogtreecommitdiff
path: root/vim/.vim/ftplugin
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2018-04-21 11:40:41 -0400
committerTucker Evans <tuckerevans24@gmail.com>2018-04-21 11:40:41 -0400
commit43ad662f2aa87da22053bdfd4244ec3d710d8c9f (patch)
treef1cc9f2a5d5d926000e9c7a687d64bcecd362ab2 /vim/.vim/ftplugin
parentb25579943df28616d757c73ecc5b087e04ddf99f (diff)
Moves vim ftplugins and Edits .vimrc accordingly
Diffstat (limited to 'vim/.vim/ftplugin')
-rw-r--r--vim/.vim/ftplugin/asm.vim0
-rw-r--r--vim/.vim/ftplugin/by.vim2
-rw-r--r--vim/.vim/ftplugin/c.vim3
-rw-r--r--vim/.vim/ftplugin/conf.vim2
-rw-r--r--vim/.vim/ftplugin/go.vim2
-rw-r--r--vim/.vim/ftplugin/java.vim2
-rw-r--r--vim/.vim/ftplugin/mail.vim3
-rw-r--r--vim/.vim/ftplugin/python.vim7
-rw-r--r--vim/.vim/ftplugin/tex.vim1
-rw-r--r--vim/.vim/ftplugin/tr.vim1
-rw-r--r--vim/.vim/ftplugin/tree.vim13
-rw-r--r--vim/.vim/ftplugin/txt.vim2
12 files changed, 38 insertions, 0 deletions
diff --git a/vim/.vim/ftplugin/asm.vim b/vim/.vim/ftplugin/asm.vim
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/vim/.vim/ftplugin/asm.vim
diff --git a/vim/.vim/ftplugin/by.vim b/vim/.vim/ftplugin/by.vim
new file mode 100644
index 0000000..7f2b61c
--- /dev/null
+++ b/vim/.vim/ftplugin/by.vim
@@ -0,0 +1,2 @@
+set nospell
+set tw=0
diff --git a/vim/.vim/ftplugin/c.vim b/vim/.vim/ftplugin/c.vim
new file mode 100644
index 0000000..a445f6f
--- /dev/null
+++ b/vim/.vim/ftplugin/c.vim
@@ -0,0 +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/ftplugin/go.vim b/vim/.vim/ftplugin/go.vim
new file mode 100644
index 0000000..736e482
--- /dev/null
+++ b/vim/.vim/ftplugin/go.vim
@@ -0,0 +1,2 @@
+set tw=0
+set cindent
diff --git a/vim/.vim/ftplugin/java.vim b/vim/.vim/ftplugin/java.vim
new file mode 100644
index 0000000..736e482
--- /dev/null
+++ b/vim/.vim/ftplugin/java.vim
@@ -0,0 +1,2 @@
+set tw=0
+set cindent
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/ftplugin/tex.vim b/vim/.vim/ftplugin/tex.vim
new file mode 100644
index 0000000..87f4512
--- /dev/null
+++ b/vim/.vim/ftplugin/tex.vim
@@ -0,0 +1 @@
+set spell
diff --git a/vim/.vim/ftplugin/tr.vim b/vim/.vim/ftplugin/tr.vim
new file mode 100644
index 0000000..87f4512
--- /dev/null
+++ b/vim/.vim/ftplugin/tr.vim
@@ -0,0 +1 @@
+set spell
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/ftplugin/txt.vim b/vim/.vim/ftplugin/txt.vim
new file mode 100644
index 0000000..7dcafeb
--- /dev/null
+++ b/vim/.vim/ftplugin/txt.vim
@@ -0,0 +1,2 @@
+set spell
+set tw=70