<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Optimized Vimrc with 256 Colorscheme</title>
	<atom:link href="http://www.askapache.com/linux/fast-vimrc.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/linux/fast-vimrc.html</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Thu, 16 May 2013 00:37:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tommy Nguyen</title>
		<link>http://www.askapache.com/linux/fast-vimrc.html#comment-3262</link>
		<dc:creator>Tommy Nguyen</dc:creator>
		<pubDate>Fri, 14 Sep 2012 02:02:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=7062#comment-3262</guid>
		<description><![CDATA[Wow! This is a tremendous .vimrc! Thanks for sharing :-)]]></description>
		<content:encoded><![CDATA[<p>Wow! This is a tremendous .vimrc! Thanks for sharing :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edward Beckett</title>
		<link>http://www.askapache.com/linux/fast-vimrc.html#comment-3261</link>
		<dc:creator>Edward Beckett</dc:creator>
		<pubDate>Thu, 17 May 2012 16:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=7062#comment-3261</guid>
		<description><![CDATA[&lt;p&gt;Nice ... &lt;/p&gt;

&lt;p&gt;MUST HAVES for me ... :-)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/tpope/vim-pathogen&quot;&gt;Pathogen&lt;/a&gt; ... it&#039;s just an awesome way to manage vim plugins ...&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/scrooloose/nerdtree&quot;&gt;NERDTree&lt;/a&gt; ... Great way to explore directories ... &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;My minimal .vimrc ... &lt;/p&gt;
&lt;pre&gt;call pathogen#infect()
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
filetype plugin indent on
autocmd vimenter * NERDTree
autocmd vimenter * wincmd l
autocmd WinEnter * call s:IfNoBuffers()
function! s:IfNoBuffers()
  if exists(&quot;t:NERDTreeBufName&quot;)
    if bufwinnr(t:NERDTreeBufName) != -1
      if winnr(&quot;$&quot;) == 1
        q
      endif
    endif
  endif
endfunction
nmap  :NERDTreeToggle
:colorscheme elflord
:set mouse=a
:set number
:set guifont=Monospace 12
:syntax enable
:set guicursor=a:ver25-Cursor/lCursor
:set showcmd
:set ruler
:set hlsearch
:set incsearch&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Nice ... </p>
<p>MUST HAVES for me ... :-)</p>
<ul>
<li><a href="https://github.com/tpope/vim-pathogen">Pathogen</a> ... it's just an awesome way to manage vim plugins ...</li>
<li><a href="https://github.com/scrooloose/nerdtree">NERDTree</a> ... Great way to explore directories ... </li>
</ul>
<p>My minimal .vimrc ... </p>
<pre>call pathogen#infect()
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
filetype plugin indent on
autocmd vimenter * NERDTree
autocmd vimenter * wincmd l
autocmd WinEnter * call s:IfNoBuffers()
function! s:IfNoBuffers()
  if exists("t:NERDTreeBufName")
    if bufwinnr(t:NERDTreeBufName) != -1
      if winnr("$") == 1
        q
      endif
    endif
  endif
endfunction
nmap  :NERDTreeToggle
:colorscheme elflord
:set mouse=a
:set number
:set guifont=Monospace 12
:syntax enable
:set guicursor=a:ver25-Cursor/lCursor
:set showcmd
:set ruler
:set hlsearch
:set incsearch</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskApache</title>
		<link>http://www.askapache.com/linux/fast-vimrc.html#comment-3260</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Sat, 24 Mar 2012 18:28:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=7062#comment-3260</guid>
		<description><![CDATA[I think that&#039;s due to your terminal size is too small for the auto-height options... You can always type this from within vim to find out:

&lt;pre&gt;: helpg E36&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>I think that's due to your terminal size is too small for the auto-height options... You can always type this from within vim to find out:</p>
<pre>: helpg E36</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskApache</title>
		<link>http://www.askapache.com/linux/fast-vimrc.html#comment-3258</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Sat, 24 Mar 2012 18:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=7062#comment-3258</guid>
		<description><![CDATA[Just save this file as &lt;code&gt;~/.vimrc&lt;/code&gt; and you are good to go.  Don&#039;t forget the colorscheme.  Let me know how it works, I haven&#039;t used extensively on FreeBSD.]]></description>
		<content:encoded><![CDATA[<p>Just save this file as <code>~/.vimrc</code> and you are good to go.  Don't forget the colorscheme.  Let me know how it works, I haven't used extensively on FreeBSD.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaetan Asselin</title>
		<link>http://www.askapache.com/linux/fast-vimrc.html#comment-3257</link>
		<dc:creator>Gaetan Asselin</dc:creator>
		<pubDate>Mon, 19 Mar 2012 20:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=7062#comment-3257</guid>
		<description><![CDATA[Hi!

Just installed VIM from &lt;b&gt;FreeBSD&lt;/b&gt; ports.
I would appreciate your help by either pointing me in the right direction or simply tell me how
to apply your &quot;.vmrc&quot; file to it ?

Looking forward to your reply. Thank you very much.

Best salutations !

Gaetan]]></description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Just installed VIM from <b>FreeBSD</b> ports.<br />
I would appreciate your help by either pointing me in the right direction or simply tell me how<br />
to apply your ".vmrc" file to it ?</p>
<p>Looking forward to your reply. Thank you very much.</p>
<p>Best salutations !</p>
<p>Gaetan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xref</title>
		<link>http://www.askapache.com/linux/fast-vimrc.html#comment-3256</link>
		<dc:creator>xref</dc:creator>
		<pubDate>Tue, 13 Mar 2012 09:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=7062#comment-3256</guid>
		<description><![CDATA[Hey! Really awesome post this. However I keep getting this error:

&lt;blockquote&gt;&lt;code&gt;Error detected while processing /home//.vimrc:
line  270:
E36: Not enough room&lt;/code&gt;&lt;/blockquote&gt;

Why is this happening? I want to make my vim look as awesome as the screenshot in your post! I use it for programming in python.]]></description>
		<content:encoded><![CDATA[<p>Hey! Really awesome post this. However I keep getting this error:</p>
<blockquote><p><code>Error detected while processing /home//.vimrc:<br />
line  270:<br />
E36: Not enough room</code></p></blockquote>
<p>Why is this happening? I want to make my vim look as awesome as the screenshot in your post! I use it for programming in python.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bronso</title>
		<link>http://www.askapache.com/linux/fast-vimrc.html#comment-3255</link>
		<dc:creator>bronso</dc:creator>
		<pubDate>Mon, 27 Feb 2012 17:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=7062#comment-3255</guid>
		<description><![CDATA[Getting an error using this &lt;code&gt;.vimrc&lt;/code&gt; on Redhat Linux 5.7



&lt;blockquote&gt;&lt;code&gt;Error detected while processing BufWinLeave Auto commands for &quot;*&quot;:
E117: Unknown function: clearmatches&lt;/code&gt;&lt;/blockquote&gt;

Error doesn&#039;t occur on current version of Cygwin.]]></description>
		<content:encoded><![CDATA[<p>Getting an error using this <code>.vimrc</code> on Redhat Linux 5.7</p>
<blockquote><p><code>Error detected while processing BufWinLeave Auto commands for "*":<br />
E117: Unknown function: clearmatches</code></p></blockquote>
<p>Error doesn't occur on current version of Cygwin.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
