Linux/Ubuntu

Vim as My IDE Update 1

A few months ago I posted about using Vim as my primary IDE. Since then I’ve fallen in love with Vim and have made a few more changes to my .vimrc file. Here is my current .vimrc: ” —————— ” Plugins ” —————— call plug#begin(‘~/.vim/plugged’) Plug ‘altercation/vim-colors-solarized’ Plug ‘bronson/vim-trailing-whitespace’ Plug ‘scrooloose/nerdtree’, { ‘on’: ‘NERDTreeToggle’ } Plug […]

Installing Java on Ubuntu

Since Java is proprietary software, Ubuntu is unable to include it in their repositories. The version of Java (IcedTea) that is in the Ubuntu repositories is a repackaged older version of Java. Because of this, you will never have the most up to date version of Java if you stick with the one provided by […]