aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkatherine <shmibs@shmibbles.me>2018-11-17 17:47:08 -0700
committerkatherine <shmibs@shmibbles.me>2018-11-17 17:47:08 -0700
commit36dac6212b2b656b731298bed1eb6332a40babdf (patch)
treecf62941dc3ff52979ab234a508618b564a00700e
parent21beea0d5b0a4cbecd91016bea639093e7f38f12 (diff)
downloaddotfiles-36dac6212b2b656b731298bed1eb6332a40babdf.tar.gz
clean up vim filetype settings
-rw-r--r--.vim/ftdetect/ia64.vim3
-rw-r--r--.vim/ftdetect/mips.vim2
-rw-r--r--.vim/ftdetect/rust.vim2
-rw-r--r--.vim/ftdetect/z80.vim2
-rw-r--r--.vimrc121
5 files changed, 75 insertions, 55 deletions
diff --git a/.vim/ftdetect/ia64.vim b/.vim/ftdetect/ia64.vim
new file mode 100644
index 0000000..1b1325c
--- /dev/null
+++ b/.vim/ftdetect/ia64.vim
@@ -0,0 +1,3 @@
+"default asm to a64 intel syntax
+au! BufRead,BufNewFile *.s set filetype=ia64
+au! BufRead,BufNewFile *.asm set filetype=ia64
diff --git a/.vim/ftdetect/mips.vim b/.vim/ftdetect/mips.vim
new file mode 100644
index 0000000..e16570e
--- /dev/null
+++ b/.vim/ftdetect/mips.vim
@@ -0,0 +1,2 @@
+"mips asm suffixed with .mips
+au! BufRead,BufNewFile *.mips set filetype=mips
diff --git a/.vim/ftdetect/rust.vim b/.vim/ftdetect/rust.vim
new file mode 100644
index 0000000..6117cc8
--- /dev/null
+++ b/.vim/ftdetect/rust.vim
@@ -0,0 +1,2 @@
+"always use rust instead of hercules
+au! BufRead,BufNewFile *.rs set filetype=rust
diff --git a/.vim/ftdetect/z80.vim b/.vim/ftdetect/z80.vim
new file mode 100644
index 0000000..f62ec44
--- /dev/null
+++ b/.vim/ftdetect/z80.vim
@@ -0,0 +1,2 @@
+"mips asm suffixed with .mips
+au! BufRead,BufNewFile *.z80 set filetype=z80
diff --git a/.vimrc b/.vimrc
index d3c2967..d55f0bb 100644
--- a/.vimrc
+++ b/.vimrc
@@ -171,6 +171,9 @@ syntax on
filetype plugin indent on
set autoindent
+"top-level folds only
+set foldnestmax=1
+
colorscheme shmibs
"close modeline security hole
@@ -278,55 +281,55 @@ let g:c_no_if0_fold = 1
let g:sh_fold_enabled = 1
if has("autocmd")
-
-"always use rust instead of hercules
-autocmd BufNewFile,BufRead *.rs set filetype=rust
-
-"always use LaTeX
-autocmd BufNewFile,BufRead *.tex set filetype=tex
-
-"default asm to a64 intel syntax
-autocmd BufNewFile,BufRead *.s set filetype=ia64
-
-"other filetype-specific settings. can't figure out how to stick this wall of
-"blech in a dict or something (probably because no clue what i'm doing with
-"viml), so separate lines it is.
-autocmd FileType asm call Settings_asm()
-autocmd FileType bash call Settings_shell()
-autocmd FileType c call Settings_c()
-autocmd FileType coffee call Settings_coffee()
-autocmd FileType conf call Settings_conf()
-autocmd FileType cpp call Settings_c()
-autocmd FileType crystal call Settings_elixir()
-autocmd FileType cs call Settings_c()
-autocmd FileType css call Settings_css()
-autocmd FileType d call Settings_c()
-autocmd FileType elixir call Settings_elixir()
-autocmd FileType javascript call Settings_c()
-autocmd FileType tex call Settings_tex()
-autocmd FileType haskell call Settings_haskell()
-autocmd FileType html call Settings_html()
-autocmd FileType xhtml call Settings_html()
-autocmd FileType ia64 call Settings_ia64()
-autocmd FileType make call Settings_script()
-autocmd FileType mail call Settings_mail()
-autocmd FileType markdown call Settings_markdown()
-autocmd FileType matlab call Settings_matlab()
-autocmd FileType mkd call Settings_text()
-autocmd FileType nim call Settings_nim()
-autocmd FileType ocaml call Settings_ocaml()
-autocmd FileType perl call Settings_perl()
-autocmd FileType php call Settings_html()
-autocmd FileType python call Settings_script()
-autocmd FileType ruby call Settings_elixir ()
-autocmd FileType rust call Settings_rust()
-autocmd FileType scss call Settings_css()
-autocmd FileType sh call Settings_script()
-autocmd FileType text call Settings_text()
-autocmd FileType vim call Settings_vim()
-autocmd FileType yaml call Settings_script2()
-autocmd FileType zig call Settings_c()
-autocmd FileType zsh call Settings_shell()
+
+ "set various filetype-specific settings.
+ augroup filetypesettings
+ au FileType asm call Settings_asm()
+ au FileType bash call Settings_shell()
+ au FileType c call Settings_c()
+ au FileType coffee call Settings_coffee()
+ au FileType conf call Settings_conf()
+ au FileType cpp call Settings_c()
+ au FileType crystal call Settings_script2()
+ au FileType cs call Settings_c()
+ au FileType css call Settings_css()
+ au FileType d call Settings_c()
+ au FileType elixir call Settings_elixir()
+ au FileType javascript call Settings_c()
+ au FileType tex call Settings_tex()
+ au FileType haskell call Settings_haskell()
+ au FileType html call Settings_html()
+ au FileType xhtml call Settings_html()
+ au FileType ia64 call Settings_ia64()
+ au FileType make call Settings_script()
+ au FileType mail call Settings_mail()
+ au FileType markdown call Settings_markdown()
+ au FileType matlab call Settings_matlab()
+ au FileType mips call Settings_mips()
+ au FileType mkd call Settings_text()
+ au FileType nim call Settings_nim()
+ au FileType ocaml call Settings_ocaml()
+ au FileType perl call Settings_perl()
+ au FileType php call Settings_html()
+ au FileType python call Settings_script()
+ au FileType ruby call Settings_elixir ()
+ au FileType rust call Settings_rust()
+ au FileType scss call Settings_css()
+ au FileType sh call Settings_script()
+ au FileType text call Settings_text()
+ au FileType vim call Settings_vim()
+ au FileType yaml call Settings_script2()
+ au FileType zig call Settings_c()
+ au FileType zsh call Settings_shell()
+ au FileType z80 call Settings_z80()
+ augroup END
+
+ "do other stuff
+ augroup filetypemisc
+ au FileType * call Settings_skel_read()
+ augroup END
+
+endif "autocmd
"command for reading filetype skeletons
function! Settings_skel_read()
@@ -344,7 +347,6 @@ function! Settings_skel_read()
"move cursor to %START%
execute "silent! normal! ggJ/%START%\<CR>:s/%START%//\<CR>"
endfunction
-autocmd FileType * call Settings_skel_read()
"a 'writing mode' for prose-y formats
function! Settings_sub_wmodetoggle()
@@ -462,11 +464,12 @@ endfunction
function! Settings_mips()
"settings
- setlocal shiftwidth=5
- setlocal tabstop=5
- setlocal softtabstop=5
+ setlocal shiftwidth=6
+ setlocal tabstop=6
+ setlocal softtabstop=6
"mappings
- nnoremap <buffer> -- O#<Space>
+ nnoremap <buffer> -- A<Tab>#<Space>
+ nnoremap <buffer> -_ O#<Space>
endfunction
function! Settings_nim()
@@ -564,4 +567,12 @@ function! Settings_yaml()
setlocal expandtab
endfunction
-endif "autocmd
+function! Settings_z80()
+ "settings
+ setlocal shiftwidth=6
+ setlocal tabstop=6
+ setlocal softtabstop=6
+ "mappings
+ nnoremap <buffer> -- A<Tab>;<Space>
+ nnoremap <buffer> -_ O;<Space>
+endfunction