summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@mandriva.org>1999-12-28 09:52:50 +0000
committerChmouel Boudjnah <chmouel@mandriva.org>1999-12-28 09:52:50 +0000
commit3be5b10b0310ba35d64a06aeb889e7a783b4aab1 (patch)
treee0c6add87922b77ed8107c03629110aa508fc1d4 /vimrc
parentda307b8c37f9fe40a48938b1b519e9fcb7a3952d (diff)
downloadrootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar.gz
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar.bz2
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar.xz
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.zip
Initial revisionoxygentopic/MandrakeSoft
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc116
1 files changed, 116 insertions, 0 deletions
diff --git a/vimrc b/vimrc
new file mode 100644
index 0000000..446e9ad
--- /dev/null
+++ b/vimrc
@@ -0,0 +1,116 @@
+""Linux-Mandrake configuration.
+"Chmouel Boudjnah <chmouel@mandrakesoft.com>
+
+"Syntax highlighting only for enhanced-vi
+if has("mouse_gpm") && filereadable("/usr/share/vim/syntax/syntax.vim")
+ syntax on
+endif
+
+"Set a statusbar
+set statusline=~
+
+"I know it's horrible for a vi master but useful for newbies.
+imap <C-a> <Esc>I
+imap <C-e> <ESC>A
+map <C-Tab> <C-W>w
+imap <C-Tab> <C-O><C-W>w
+cmap <C-Tab> <C-C><C-Tab>
+
+"Some macros to manage the buffer of vim
+map <F5> :bp<C-M>
+map <F6> :bn<C-M>
+map <F7> :bd<C-M>
+
+"Default tab for 4
+set ts=4
+
+"Default backspace like normal
+set bs=2
+
+"Terminal for 80 char ? so vim can play till 79 char.
+set textwidth=79
+
+"Some option desactivate by default (remove the no).
+set nobackup
+set nohlsearch
+set noincsearch
+
+"Display a status-bar.
+"set laststatus=2
+
+"Show the position of the cursor.
+set ruler
+
+"Show matching parenthese.
+set showmatch
+
+"" Gzip and Bzip2 files support
+" Take from the Debian package and the exemple on $VIM/vim_exemples
+if has("autocmd")
+
+" Set some sensible defaults for editing C-files
+augroup cprog
+ " Remove all cprog autocommands
+ au!
+
+ " When starting to edit a file:
+ " For *.c and *.h files set formatting of comments and set C-indenting on.
+ " For other files switch it off.
+ " Don't change the order, it's important that the line with * comes first.
+ autocmd BufRead * set formatoptions=tcql nocindent comments&
+ autocmd BufRead *.c,*.h set formatoptions=croql cindent comments=sr:/*,mb:*,el:*/,://
+augroup END
+
+" Also, support editing of gzip-compressed files. DO NOT REMOVE THIS!
+" This is also used when loading the compressed helpfiles.
+augroup gzip
+ " Remove all gzip autocommands
+ au!
+
+ " Enable editing of gzipped files
+ " read: set binary mode before reading the file
+ " uncompress text in buffer after reading
+ " write: compress file after writing
+ " append: uncompress file, append, compress file
+ autocmd BufReadPre,FileReadPre *.gz set bin
+ autocmd BufReadPre,FileReadPre *.gz let ch_save = &ch|set ch=2
+ autocmd BufReadPost,FileReadPost *.gz '[,']!gunzip
+ autocmd BufReadPost,FileReadPost *.gz set nobin
+ autocmd BufReadPost,FileReadPost *.gz let &ch = ch_save|unlet ch_save
+ autocmd BufReadPost,FileReadPost *.gz execute ":doautocmd BufReadPost " . %:r
+
+ autocmd BufWritePost,FileWritePost *.gz !mv <afile> <afile>:r
+ autocmd BufWritePost,FileWritePost *.gz !gzip <afile>:r
+
+ autocmd FileAppendPre *.gz !gunzip <afile>
+ autocmd FileAppendPre *.gz !mv <afile>:r <afile>
+ autocmd FileAppendPost *.gz !mv <afile> <afile>:r
+ autocmd FileAppendPost *.gz !gzip <afile>:r
+augroup END
+
+augroup bzip2
+ " Remove all bzip2 autocommands
+ au!
+
+ " Enable editing of bzipped files
+ " read: set binary mode before reading the file
+ " uncompress text in buffer after reading
+ " write: compress file after writing
+ " append: uncompress file, append, compress file
+ autocmd BufReadPre,FileReadPre *.bz2 set bin
+ autocmd BufReadPre,FileReadPre *.bz2 let ch_save = &ch|set ch=2
+ autocmd BufReadPost,FileReadPost *.bz2 set cmdheight=2|'[,']!bunzip2
+ autocmd BufReadPost,FileReadPost *.bz2 set cmdheight=1 nobin|execute ":doautocmd BufReadPost " . %:r
+ autocmd BufReadPost,FileReadPost *.bz2 let &ch = ch_save|unlet ch_save
+
+ autocmd BufWritePost,FileWritePost *.bz2 !mv <afile> <afile>:r
+ autocmd BufWritePost,FileWritePost *.bz2 !bzip2 <afile>:r
+
+ autocmd FileAppendPre *.bz2 !bunzip2 <afile>
+ autocmd FileAppendPre *.bz2 !mv <afile>:r <afile>
+ autocmd FileAppendPost *.bz2 !mv <afile> <afile>:r
+ autocmd FileAppendPost *.bz2 !bzip2 -9 --repetitive-best <afile>:r
+augroup END
+
+endif " has ("autocmd")
+