This is more like a backup for my vimrc file. Whenever I change to a new machine, I start missing my vim settings and memorizing stuff like this is not one of my good habits :).
setnocompatible setbackspace=indent,eol,start " allow backspacing over everything in insert mode setnu" Set line numbering on setnobackup" do not keep a backup file, use versions instead sethistory=50 " keep 50 lines of command line history setruler" show the cursor position all the time setshowcmd" display incomplete commands setincsearch" do incremental searching map Q gq " Don't use Ex mode, use Q for formatting
" Switch syntax highlighting on, when the terminal has colors " Also switch on highlighting the last used search pattern. if &t_Co > 2 ||has("gui_running") else setterm=xterm endif syntaxon sethlsearch
" Only do this part when compiled with support for autocommands. ifhas("autocmd")
" Enable file type detection. " Use the default filetype settings, so that mail gets 'tw' set to 72, " 'cindent' is on in C files, etc. " Also load indent files, to automatically do language-dependent indenting. filetypeplugin indent on
" For all text files set 'textwidth' to 78 characters. autocmdFileType text setlocaltextwidth=78
Found this cool virtual cd-rom driver from Microsoft today. Although its not as flexible as free products from Alcohol Software or Daemon Tools, its considerably small and fast. Unfortunately, its probably only for Windows XP.
I tried out the Intel C/C++ Compiler v10.0 on my Ubuntu/7.04 box. Its free for "personal" use only. Unfortunately, it is a rpm distribution and does not "officially" support Ubuntu Linux. Well, use "alien" to fix that problem and convert the rpm to a debian package. A simple google search will give any1 the steps if interested. So far, it hasn't become painful to use it ... yet. But I did have problems using it out-of-the-box.
First of all, the executable complained about missing "libcxaguard.so.5". Again, google to the rescue and there are several fixes for this problem and obviously I tried the easiest one :). Link with option "-static-libcxa". Unfortunately the executable is bigger than using the shared library. I'll try to post some of the performance comparison with gcc next time.
Secondly, how on earth can I use it with Kdevelop? This one took some time since I'm not very familiar with kdevelop myself and google didn't seem to help much except for other people asking for the same solution. Mingling with kdevelop for about an hour ... got it :D. There is a "iccvars.sh" script in the bin directory ... it sets up the environment vars for the compiler. Just use them in Project->Project Options->Configure Options (I would recommend using a new configuration with gcc's default settings). Here is a snap of the env vars I have set there (same as in the iccvars.sh script):
Also, we need the linker options to link against the libcxaguard.so.5 ... so add "-static-libcxa -lstdc++" to the LDFLAGS section. Lastly, we need to set the include and lib search path: add "-I/opt/intel/cc/10.0.023/include/ -L/opt/intel/cc/10.0.023/lib" to the C and C++ tabs CXXFLAGS section. Now run automake and friends ... then configure ... build... youre good to go.
on a last note... i've used the intel directory paths according to my installation. If you have it installed in some other directory... use that one. Happy coding :)