Skip to content

Instantly share code, notes, and snippets.

@ff6347
Last active May 25, 2020 10:27
Show Gist options
  • Save ff6347/c133952916709f6555d8456a28f804b0 to your computer and use it in GitHub Desktop.
Save ff6347/c133952916709f6555d8456a28f804b0 to your computer and use it in GitHub Desktop.
Some basic vimrc so I can curl it into a ubuntu box
call plug#begin(expand('~/.vim/plugged'))
Plug 'arcticicestudio/nord-vim'
Plug 'sheerun/vim-polyglot'
call plug#end()
filetype indent plugin on
colorscheme nord
syntax on
set autoindent
set backspace=2
set cursorline
set expandtab " tabs are spaces
set hlsearch " highlight matches
set ignorecase
set incsearch " search as characters are entered
set linebreak
set list " turn on invisibles
"set listchars=space:⸰
set noerrorbells " don't beep
set number
set ruler
set shiftwidth=2 " number of spaces for autoindent
set showbreak=+++
set showmatch " highlight matching bracket
set smartcase
set smartindent
set smarttab
set softtabstop=2 " number of spaces in tab when editing
set tabstop=2 " number of visual spaces per TAB
set termguicolors
set textwidth=100
set visualbell " don't beep
@ff6347
Copy link
Author

ff6347 commented Mar 17, 2020

git clone https://gist.github.com/c133952916709f6555d8456a28f804b0.git ./vimrc && cp ./vimrc/.vimrc ~/.vimrc
or curl https://gist.githubusercontent.com/fabianmoronzirfas/c133952916709f6555d8456a28f804b0/raw/b88a1f04595e14514685d6e0d4ff3b59437be878/.vimrc > ~/.vimrc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment