Skip to content

Instantly share code, notes, and snippets.

@mboros1
Last active December 6, 2019 01:50
Show Gist options
  • Save mboros1/9f8742dd27bb06ed2d3f09012d72dfae to your computer and use it in GitHub Desktop.
Save mboros1/9f8742dd27bb06ed2d3f09012d72dfae to your computer and use it in GitHub Desktop.
filetype plugin indent on
" On pressing tab, insert 2 spaces
set expandtab
" show existing tab with 2 spaces width
set tabstop=2
set softtabstop=2
" when indenting with '>', use 2 spaces width
set shiftwidth=2
if has("autocmd")
" If the filetype is Makefile then we need to use tabs
" So do not expand tabs into space.
autocmd FileType make set noexpandtab
endif
let g:airline#extensions#tabline#enabled = 1
call plug#begin('~/.local/share/nvim/plugged')
Plug 'neoclide/coc.nvim', {'tag': '*', 'branch': 'release'}
Plug 'autozimu/LanguageClient-neovim', {
\ 'branch': 'next',
\ 'do': 'bash install.sh',
\ }
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'kristijanhusak/vim-hybrid-material'
" (Optional) Multi-entry selection UI.
Plug 'junegunn/fzf'
call plug#end()
colorscheme hybrid_material
set signcolumn=yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment