I recently installed pyblosxom to do blogging, andI use vim to edit my blog posts. pyblosxom automatically transforms your .txt files under a certain path into HTML, RSS, or whatever else is appropriate. Obviously, your .txt files will probably contain HTML, so if you would like to tell vim to use a different syntax highlighting style for files under a directory path, try adding this to your vimrc:
+
I recently installed pyblosxom to do blogging, usingVim to edit blog posts. Pyblosxom automatically transforms .txt files under a certain path into HTML, RSS, or whatever else is appropriate. These .txt files will probably contain HTML, so if you would like to tell Vim to use a different syntax highlighting style for files under a directory path, try adding this to your [[vimrc]]:
−
<pre>
<pre>
autocmd BufRead,BufNewFile ~/.pyblosxom/data/* set syntax=html
autocmd BufRead,BufNewFile ~/.pyblosxom/data/* set syntax=html
created 2004 · complexity basic · author Michael Pyne · version 6.0
I recently installed pyblosxom to do blogging, using Vim to edit blog posts. Pyblosxom automatically transforms .txt files under a certain path into HTML, RSS, or whatever else is appropriate. These .txt files will probably contain HTML, so if you would like to tell Vim to use a different syntax highlighting style for files under a directory path, try adding this to your vimrc:
autocmd BufRead,BufNewFile ~/.pyblosxom/data/* set syntax=html
As an aside, another way to go about this would be a user command that gives you a skeleton entry, saved and named (for instance current time/date stamp) as you desire with your cursor placed where you want. File format, patch mode and other such options can be set as desired as well.