1. Install uif2iso package
$ sudo apt-get install uif2iso2. Run command to convert .uif to .iso file
$ uif2iso file.uif file.iso3. Mount .iso file
$ mkdir ~/iso_fileThat's it! :)
$ sudo mount file.iso ~/iso_file -t iso9660 -o loop
$ sudo apt-get install uif2iso2. Run command to convert .uif to .iso file
$ uif2iso file.uif file.iso3. Mount .iso file
$ mkdir ~/iso_fileThat's it! :)
$ sudo mount file.iso ~/iso_file -t iso9660 -o loop
sudo rm /var/lib/dpkg/info/oracle-java7-installer* sudo apt-get purge oracle-java7-installer* sudo rm /etc/apt/sources.list.d/*java* sudo apt-get update sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java7-installer
$ mv ~/.vim ~/.vim-bk2. Create new ~/.vim and ~/.vim/bundle (to contain your plugins)
$ mkdir -p ~/.vim/bundle3. Setup Vundle
$ git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle4. Configuring .vimrc
5. Get webapi-vim and vimplenote-vimset nocompatible " be iMproved filetype off " required! set rtp+=~/.vim/bundle/vundle/ call vundle#rc() " let Vundle manage Vundle " required! Bundle 'gmarik/vundle' " My Bundles here: " " original repos on github Bundle 'mattn/vimplenote'Bundle 'mattn/webapi'" ... filetype plugin indent on " required! " " Brief help " :BundleList - list configured bundles " :BundleInstall(!) - install(update) bundles " :BundleSearch(!) foo - search(or refresh cache first) for foo " :BundleClean(!) - confirm(or auto-approve) removal of unused bundles " " see :h vundle for more details or wiki for FAQ " NOTE: comments after Bundle command are not allowed..
$ git clone git://github.com/mattn/webapi-vim.git ~/.vim/bundle/webapi6. Running and installing bundle
$ git clone git://github.com/mattn/vimplenote-vim.git ~/.vim/bundle/vimplenote
$ vim7. Using Vimplenote (do it inside vim)
:BundleInstall
:Vimplenote -l " list of your Simplenote notes (you'll be prompted to fill in login credentials)And you're good to go :)
:Vimplenote -d " delete your current note
:Vimplenote -n " create new note
:Vimplenote -u " update current note
:Vimplenote -t " add a tag to a note
:Vimplenote -s " search a note