Skip to content

Instantly share code, notes, and snippets.

@pzread
Created September 18, 2017 01:44
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save pzread/da02b8813f5089a0b61e17237424889c to your computer and use it in GitHub Desktop.
set ai
set backspace=2
set cin
set et
set hidden
set mouse=
set nocompatible
set nu
set shiftwidth=2
set softtabstop=2
set t_Co=256
set t_ut=
syn on
call plug#begin('~/.local/share/nvim/plugged')
Plug 'ayu-theme/ayu-vim'
Plug 'autozimu/LanguageClient-neovim', { 'do': ':UpdateRemotePlugins' }
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'Shougo/echodoc.vim'
Plug 'rust-lang/rust.vim'
call plug#end()
set termguicolors
let ayucolor="dark"
colorscheme ayu
let g:LanguageClient_serverCommands = {
\ 'rust': ['rustup', 'run', 'nightly', 'rls'],
\ 'python': ['pyls'],
\ }
let g:LanguageClient_autoStart = 1
let g:deoplete#enable_at_startup = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment