Today feels like a sleepy day, I don't know why that is. It just feels that way. I wish I could figure out why life happens the way it does. But I don't understand how anything goes about in this life. If I could understand one thought in life...I think I'd like it to be able to grasp why we are here on this Earth. Is it because the aliens want us to become something better than we are? I mean they're the ones in charge right? I think they are.
So, I added the following to my vimrc: " Change Leader Key to a comma, that '\' is so hard to reach let mapleader = "," " Set the maximum width of text to 80 characters set textwidth=80 " Optional visual indicator for the 80th column set colorcolumn=80 " Show line numbers set number " File type detection, plugins, and smart indentation filetype plugin indent on " formatoptions settings: " t: Auto-wrap text using textwidth " c: Auto-wrap comments using textwidth " q: Allow formatting of comments with "gq" set formatoptions+=tcq " Tabs and Spaces Setup set expandtab " Use spaces instead of tabs set tabstop=4 " Number of spaces that a tab counts for set shiftwidth=4 " Number of spaces to use for each step of autoindent set softtabstop=4 " Number of spaces that a tab counts for while editing " Enable syntax highlighting syntax enable " Always show the status lin...