Commit e39d1928 authored by Murukesh Mohanan's avatar Murukesh Mohanan

replaced vim ad, added icons for links to git.cse, github

parent 8a4c30dc
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
</ul> </ul>
</nav> </nav>
<div id="vim-proposal"> <div id="vim-proposal">
<a href="http://area51.stackexchange.com/proposals/80441/vi-and-vim?referrer=cSyv9sCu62iNAfGtTTKvSg2"> <a href="http://vi.stackexchange.com">
<img src="http://area51.stackexchange.com/ads/proposal/80441.png" alt="Stack Exchange Q&A site proposal: Vi and vim" /> <img src="http://i.stack.imgur.com/LMMOe.png" alt="Vi and Vim Stack Exchange" />
</a> </a>
</div> </div>
<article id="main"> <article id="main">
......
...@@ -3,64 +3,62 @@ title: Resources ...@@ -3,64 +3,62 @@ title: Resources
pagestyle: cann-table pagestyle: cann-table
permalink: /resources/ permalink: /resources/
--- ---
# Vim: `vimrc` and plugins {#vim} # Vim: `vimrc` and plugins [CSE Git](https://git.cse.iitb.ac.in/murukesh/vimrc) [Github](https://github.com/murukeshm/vimrc) {#vim}
- (outdated) tarball: [vim.tar.bz2]({{ site.base-url }}/files/vim.tar.bz2)
- [CSE Git](https://git.cse.iitb.ac.in/murukesh/vimrc)
- [Github](https://github.com/murukeshm/vimrc)
<div markdown="1" id="plugins-list"> <div markdown="1" id="plugins-list">
Currently contains a nifty `vimrc`, and some plugins: Currently contains a nifty `vimrc`, and some plugins:
- [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332) - [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332)
- [supertab](https://github.com/ervandew/supertab)
- [syntastic](https://github.com/scrooloose/syntastic)
- [YouCompleteMe](https://github.com/Valloric/YouCompleteMe.git)
- [vim-airline](https://github.com/bling/vim-airline)
- [ctrlp.vim](https://github.com/ctrlpvim/ctrlp.vim.git)
- [diffchar.vim](https://github.com/vim-scripts/diffchar.vim) - [diffchar.vim](https://github.com/vim-scripts/diffchar.vim)
- [molokai](https://github.com/tomasr/molokai.git)
- [nerdtree](https://github.com/scrooloose/nerdtree.git) - [nerdtree](https://github.com/scrooloose/nerdtree.git)
- [supertab](https://github.com/ervandew/supertab.git) - [tabular](https://github.com/godlygeek/tabular.git)
- [syntastic](https://github.com/scrooloose/syntastic.git) - [tagbar](https://github.com/majutsushi/tagbar.git)
- [vim2hs](https://github.com/dag/vim2hs)
- [vim-surround](https://github.com/tpope/vim-surround.git)
- [vim-airline](https://github.com/bling/vim-airline)
- [vim-fugitive](https://github.com/tpope/vim-fugitive.git) - [vim-fugitive](https://github.com/tpope/vim-fugitive.git)
- [vimtex](https://github.com/lervag/vimtex) - [vim-go](https://github.com/fatih/vim-go.git)
- [molokai](https://github.com/tomasr/molokai.git)
- [ctrlp.vim](https://github.com/ctrlpvim/ctrlp.vim.git)
- [vim-markdown](https://github.com/gabrielelana/vim-markdown) - [vim-markdown](https://github.com/gabrielelana/vim-markdown)
- [vim-surround](https://github.com/tpope/vim-surround.git)
- [vimtex](https://github.com/lervag/vimtex)
- [vim2hs](https://github.com/dag/vim2hs)
</div>
Old plugins: Old plugins:
- [vim-colorschemes](https://github.com/flazz/vim-colorschemes.git) - *replaced with just the molokai scheme* - [vim-colorschemes](https://github.com/flazz/vim-colorschemes.git) - replaced with just the `molokai` scheme
- [eregex.vim](https://github.com/othree/eregex.vim.git) - didn't use it enough - [eregex.vim](https://github.com/othree/eregex.vim.git) - didn't use it enough
- [ctrlp.vim](https://github.com/kien/ctrlp.vim) - *superseded by ctrlp/ctrlp.vim* - [ctrlp.vim](https://github.com/kien/ctrlp.vim) - superseded by `ctrlp/ctrlp.vim`
- [LaTeX-Box](https://github.com/LaTeX-Box-Team/LaTeX-Box.git) - *superseded by vimtex* - [LaTeX-Box](https://github.com/LaTeX-Box-Team/LaTeX-Box.git) - superseded by `vimtex`
</div>
You might wanna do a `git pull` on some of the plugins inside `.vim/bundle`:
git submodule foreach git pull -u origin master You might wanna update some of the plugins inside `.vim/bundle`:
**Bonus**: My dotfile repos: git submodule update --remote --recursive --init
- [CSE Git](https://git.cse.iitb.ac.in/murukesh/home) **Bonus**: My dotfile repos [CSE Git](https://git.cse.iitb.ac.in/murukesh/home)
- [Github](https://github.com/murukeshm/home)
<!-- section --> <!-- section -->
# Some scripts {#scripts} # Some scripts {#scripts}
- [curlwc.sh](https://github.com/murukeshm/scripts/blob/master/curlwc.sh): - [`curlwc.sh`](https://github.com/murukeshm/scripts/blob/master/curlwc.sh):
This script uses [curl(1)](http://manpages.ubuntu.com/curl.1) to download the target file in parts. Not very robust. This script uses [curl(1)](http://manpages.ubuntu.com/curl.1) to download the target file in parts. Not very robust.
- [mtcd.sh](https://github.com/murukeshm/scripts/blob/master/mtcd.sh): - [`mtcd.sh`](https://github.com/murukeshm/scripts/blob/master/mtcd.sh):
This script mounts all arguments in directories within `~/cdrom` (as ISO9660 images), and also handles unmounting. This script mounts all arguments in directories within `~/cdrom` (as ISO9660 images), and also handles unmounting.
These and more can be found on my [Github scrips repo](https://github.com/murukeshm/scripts). These and more can be found on my scripts repo. [Github](https://github.com/murukeshm/scripts)
<!-- section --> <!-- section -->
# CV # CV [CSE Git](https://git.cse.iitb.ac.in/murukesh/cv)
A CV template in LaTeX (modified from one obtained online, original included): A CV template in LaTeX (modified from one obtained online, original included):
- (outdated) tarball: [CV-LaTeX.tar.gz]({{ site.base-url }}/files/CV-LaTeX.tar.gz) - (outdated) tarball: [CV-LaTeX.tar.gz]({{ site.base-url }}/files/CV-LaTeX.tar.gz)
- [CSE Git](https://git.cse.iitb.ac.in/murukesh/cv)
<!-- section --> <!-- section -->
...@@ -70,11 +68,9 @@ A CV template in LaTeX (modified from one obtained online, original included): ...@@ -70,11 +68,9 @@ A CV template in LaTeX (modified from one obtained online, original included):
{% include_relative cann-table.html %} {% include_relative cann-table.html %}
</div> </div>
I have followed the banding used by [@7amkickoff][7amkickoff]. I have followed the banding used by [@7amkickoff][7amkickoff]. This table is
This table is updated weekly via a cronjob. updated weekly via a cronjob. The data is scraped from [the PL site][epl]
The data is scraped from [the PL site][epl] without any permission. Hopefully this will count as personal use. :)
without any permission.
Hopefully this will count as personal use. :)
[cann-table]: http://www.sussex.ac.uk/Users/iane/cannyclubs.php [cann-table]: http://www.sussex.ac.uk/Users/iane/cannyclubs.php
[7amkickoff]: http://www.7amkickoff.com/2012/cann-tables-show-the-gap-between-arsenal-and-the-top-is-smaller-than-you-think/ [7amkickoff]: http://www.7amkickoff.com/2012/cann-tables-show-the-gap-between-arsenal-and-the-top-is-smaller-than-you-think/
......
...@@ -10,3 +10,14 @@ ...@@ -10,3 +10,14 @@
height: 4em; height: 4em;
} }
a[href^="https://git.cse.iitb.ac.in"] {
content: url("../images/gitlab.png");
max-height: 1.5em;
vertical-align: bottom;
}
a[href^="https://github.com/murukeshm"]:not([href$=".sh"]) {
content: url("../images/github.png");
max-height: 1.5em;
vertical-align: bottom;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment