Skip to content

Instantly share code, notes, and snippets.

View chmelevskij's full-sized avatar
🥔
Potato is life

Tomas Chmelevskij chmelevskij

🥔
Potato is life
View GitHub Profile
@chmelevskij
chmelevskij / .vimrc
Last active September 30, 2016 20:01
" Created: Thu 2 Jun 2016 15:38:32 BST
" Vundle setup
syntax enable " Turn on syntax highlighting
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
@chmelevskij
chmelevskij / counter.sh
Last active September 30, 2016 20:02
Dirty line count of the project in bash
#!/bin/bash
# egrep or grep -e can be used
# gollabedit|golang-web|css was stuff to exclude
find $(pwd) | egrep -vi '/\.|gollabedit|golang-web|/css/|\.log' | xargs wc -l 2> /dev/null | sed "s|$PWD||"