Skip to content

Instantly share code, notes, and snippets.

@gpressutto5
Created February 5, 2018 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gpressutto5/76d6c43a0de2133e6bb352d9f25a1dcb to your computer and use it in GitHub Desktop.
Save gpressutto5/76d6c43a0de2133e6bb352d9f25a1dcb to your computer and use it in GitHub Desktop.
My .vimrc
set termguicolors
syntax on
set background=dark
colorscheme material-theme
set nocompatible
set number
set ruler
set encoding=utf-8
set tabstop=4
let mapleader=","
set showcmd
set cursorline
filetype indent on
set wildmenu
set softtabstop=4
set expandtab
set scrolloff=3
set backspace=indent,eol,start
set matchpairs+=<:>
set hlsearch
set incsearch
set ignorecase
set smartcase
set showmatch
nnoremap <leader><space> :nohlsearch<CR>
set listchars=tab:▸\ ,eol:¬
set list
map <leader>l :set list!<CR>
noremap <Leader>y "*y
noremap <Leader>p "*p
noremap <Leader>Y "+y
noremap <Leader>P "+p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment