<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mediawiki.geitenpad.rijkenmiel.nl/index.php?action=history&amp;feed=atom&amp;title=Vimrc</id>
	<title>Vimrc - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.geitenpad.rijkenmiel.nl/index.php?action=history&amp;feed=atom&amp;title=Vimrc"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.geitenpad.rijkenmiel.nl/index.php?title=Vimrc&amp;action=history"/>
	<updated>2026-09-12T03:24:27Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://mediawiki.geitenpad.rijkenmiel.nl/index.php?title=Vimrc&amp;diff=143&amp;oldid=prev</id>
		<title>Rijk: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.geitenpad.rijkenmiel.nl/index.php?title=Vimrc&amp;diff=143&amp;oldid=prev"/>
		<updated>2025-01-05T14:34:05Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 14:34, 5 January 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Rijk</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.geitenpad.rijkenmiel.nl/index.php?title=Vimrc&amp;diff=142&amp;oldid=prev</id>
		<title>Rijk at 09:52, 11 February 2017</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.geitenpad.rijkenmiel.nl/index.php?title=Vimrc&amp;diff=142&amp;oldid=prev"/>
		<updated>2017-02-11T09:52:46Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;/etc/vim/vimrc&lt;br /&gt;
&lt;br /&gt;
 rijk@RijksUReich:~$ cat /etc/vim/vimrc&lt;br /&gt;
 &amp;quot; All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by&lt;br /&gt;
 &amp;quot; the call to :runtime you can find below.  If you wish to change any of those&lt;br /&gt;
 &amp;quot; settings, you should do it in this file (/etc/vim/vimrc), since debian.vim&lt;br /&gt;
 &amp;quot; will be overwritten everytime an upgrade of the vim packages is performed.&lt;br /&gt;
 &amp;quot; It is recommended to make changes after sourcing debian.vim since it alters&lt;br /&gt;
 &amp;quot; the value of the &amp;#039;compatible&amp;#039; option.&lt;br /&gt;
 &lt;br /&gt;
 &amp;quot; This line should not be removed as it ensures that various options are&lt;br /&gt;
 &amp;quot; properly set to work with the Vim-related packages available in Debian.&lt;br /&gt;
 runtime! debian.vim&lt;br /&gt;
  &lt;br /&gt;
 &amp;quot; Uncomment the next line to make Vim more Vi-compatible&lt;br /&gt;
 &amp;quot; NOTE: debian.vim sets &amp;#039;nocompatible&amp;#039;.  Setting &amp;#039;compatible&amp;#039; changes numerous&lt;br /&gt;
 &amp;quot; options, so any other options should be set AFTER setting &amp;#039;compatible&amp;#039;.&lt;br /&gt;
 &amp;quot;set compatible&lt;br /&gt;
 &lt;br /&gt;
 &amp;quot; Vim5 and later versions support syntax highlighting. Uncommenting the next&lt;br /&gt;
 &amp;quot; line enables syntax highlighting by default.&lt;br /&gt;
 if has(&amp;quot;syntax&amp;quot;)&lt;br /&gt;
  syntax on&lt;br /&gt;
 endif&lt;br /&gt;
 &lt;br /&gt;
 &amp;quot; If using a dark background within the editing area and syntax highlighting&lt;br /&gt;
 &amp;quot; turn on this option as well&lt;br /&gt;
 &amp;quot;set background=dark &lt;br /&gt;
 &lt;br /&gt;
 &amp;quot; Uncomment the following to have Vim jump to the last position when&lt;br /&gt;
 &amp;quot; reopening a file&lt;br /&gt;
 &amp;quot;if has(&amp;quot;autocmd&amp;quot;)&lt;br /&gt;
 &amp;quot;  au BufReadPost * if line(&amp;quot;&amp;#039;\&amp;quot;&amp;quot;) &amp;gt; 1 &amp;amp;&amp;amp; line(&amp;quot;&amp;#039;\&amp;quot;&amp;quot;) &amp;lt;= line(&amp;quot;$&amp;quot;) | exe &amp;quot;normal! g&amp;#039;\&amp;quot;&amp;quot; | endif&lt;br /&gt;
 &amp;quot;endif &lt;br /&gt;
 &lt;br /&gt;
 &amp;quot; Uncomment the following to have Vim load indentation rules and plugins&lt;br /&gt;
 &amp;quot; according to the detected filetype.&lt;br /&gt;
 &amp;quot;if has(&amp;quot;autocmd&amp;quot;)&lt;br /&gt;
 &amp;quot;  filetype plugin indent on&lt;br /&gt;
 &amp;quot;endif &lt;br /&gt;
 &lt;br /&gt;
 &amp;quot; The following are commented out as they cause vim to behave a lot&lt;br /&gt;
 &amp;quot; differently from regular Vi. They are highly recommended though.&lt;br /&gt;
 &amp;quot;set showcmd		&amp;quot; Show (partial) command in status line.&lt;br /&gt;
 &amp;quot;set showmatch		&amp;quot; Show matching brackets.&lt;br /&gt;
 &amp;quot;set ignorecase		&amp;quot; Do case insensitive matching&lt;br /&gt;
 &amp;quot;set smartcase		&amp;quot; Do smart case matching&lt;br /&gt;
 &amp;quot;set incsearch		&amp;quot; Incremental search&lt;br /&gt;
 &amp;quot;set autowrite		&amp;quot; Automatically save before commands like :next and :make&lt;br /&gt;
 &amp;quot;set hidden		&amp;quot; Hide buffers when they are abandoned&lt;br /&gt;
 &amp;quot;set mouse=a		&amp;quot; Enable mouse usage (all modes)&lt;br /&gt;
 &lt;br /&gt;
 &amp;quot; Source a global configuration file if available&lt;br /&gt;
 if filereadable(&amp;quot;/etc/vim/vimrc.local&amp;quot;)&lt;br /&gt;
   source /etc/vim/vimrc.local&lt;br /&gt;
 endif&lt;br /&gt;
  &lt;br /&gt;
 set hlsearch&lt;br /&gt;
 set ignorecase&lt;br /&gt;
 set mouse=a&lt;/div&gt;</summary>
		<author><name>Rijk</name></author>
	</entry>
</feed>