So, I have seven new shiny notebooks, with pens, to write in! SEVEN OF THEM! Yes I get excited by notebooks in general. I enjoy writing, it’s what I do best…most of the time. There isn’t always a way to tell if I’m doing good at it though. But I have notebooks to write in, so that excites me beyond any reason of the imagination at all. If I can write in something physical, and not have to be on my computer? I’d rather be writing that way. It’s just how life feels at times. I like it. But if I have to write using my computer, then that’s okay too. Eventually whatever I end up writing will end up in my computer at some point in space or another. It’s just a given fact. AND, the notebooks are different colors! So if I wanted to, I could color coordinate them by series I’m working on or whatever. They’re good colors too. Yellow Orange Purple Green Blue Okay so that’s not seven different colors. But hey it works! I’m happy with it! (and I deserve to be happy)
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...