Browse Source

Add automatic detection if beakerlib logs

Alois Mahdal 7 years ago
parent
commit
6630311b16
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      dotfiles/vim/vimrc

+ 1
- 0
dotfiles/vim/vimrc View File

@@ -90,6 +90,7 @@ if has("autocmd")
90 90
   au!
91 91
   autocmd FileType text setlocal textwidth=78
92 92
   autocmd BufNewFile,BufReadPost *.md set filetype=markdown
93
+  autocmd BufNewFile,BufReadPost *TESTOUT.log* set filetype=beakerlib
93 94
   autocmd BufReadPost *
94 95
     \ if line("'\"") > 1 && line("'\"") <= line("$") |
95 96
     \   exe "normal! g`\"" |