Skip to content

Instantly share code, notes, and snippets.

@Althorion
Created November 14, 2017 18:52
Show Gist options
  • Save Althorion/38b4610975870e7acc19a675d04a6eaa to your computer and use it in GitHub Desktop.
Save Althorion/38b4610975870e7acc19a675d04a6eaa to your computer and use it in GitHub Desktop.
" vim-plug
call plug#begin('~/.local/share/nvim/plugger')
Plug 'iCyMind/NeoSolarized'
call plug#end()
" General
filetype plugin indent on
syntax on
let g:mapleader = ","
let g:enable_bold_font = 1
let g:enable_italic_font = 1
set title
set number
set relativenumber
set history=512
set showcmd
set smartcase
set mouse=a
set showmatch
set nostartofline
set listchars=tab:\ \ ,trail:·
set autoread
set lazyredraw
if has('clipboard')
set clipboard=unnamedplus
endif
command W w !sudo tee % > /dev/null
" Indentation
set shiftwidth=4
set softtabstop=4
set tabstop=4
set smartindent
set colorcolumn=120
" Colourscheme
set termguicolors " true colour support
colorscheme NeoSolarized
let g:neosolarized_bold = 1
let g:neosolarized_underline = 1
let g:neosolarized_italic = 1
set background=light
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment