Skip to content

Instantly share code, notes, and snippets.

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Font
:set guifont=Source\ Code\ Pro:h14
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Hide pointless junk at the bottom, doesn't work in .vimrc for some reason?
:set laststatus=0
:set noshowmode "don't show --INSERT--
:set noruler "don't show line numbers/column/% junk
@box-turtle
box-turtle / Abort Controller In Axios
Created January 16, 2019 13:13 — forked from adeelibr/Abort Controller In Axios
Abort Controllers In Axios
import React, { Component } from 'react';
import axios from 'axios';
class Example extends Component {
signal = axios.CancelToken.source();
state = {
isLoading: false,
user: {},
}
@box-turtle
box-turtle / sample.gitconfig
Created March 30, 2019 14:29
git log format alias
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches
set nocompatible " be iMproved
filetype off " required!
if has('win32') || has('win64')
source $VIMRUNTIME/mswin.vim
behave mswin
set rtp+=~/vimfiles/bundle/vundle/
call vundle#rc('$HOME/vimfiles/bundle/')
else