Skip to content

Instantly share code, notes, and snippets.

View nikhilsaldanha's full-sized avatar

Nikhil Saldanha nikhilsaldanha

  • Bengaluru, Karnataka
View GitHub Profile
@nikhilsaldanha
nikhilsaldanha / .vimrc
Last active March 26, 2019 09:31
good vimrc config for python
set nocompatible " required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
@nikhilsaldanha
nikhilsaldanha / atom_contrib.md
Last active November 3, 2018 02:16
Contribute to Atom
  1. Use apm to clone and link the repo to developer package directory (~/.atom/dev/packages/package-name)

    apm develop package-name
    

    This clones the repo to a default location, ~/github/package-name

    You may now move to step 4 directly