Last active
May 25, 2020 10:27
-
-
Save ff6347/c133952916709f6555d8456a28f804b0 to your computer and use it in GitHub Desktop.
Some basic vimrc so I can curl it into a ubuntu box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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