38 lines
1.1 KiB
VimL
38 lines
1.1 KiB
VimL
call plug#begin('~/.config/nvim/plugged')
|
|
Plug 'roxma/nvim-yarp'
|
|
Plug 'ncm2/ncm2'
|
|
Plug 'autozimu/LanguageClient-neovim', {'branch': 'next', 'do': 'bash install.sh' }
|
|
|
|
Plug 'rhysd/vim-crystal'
|
|
Plug 'elmcast/elm-vim'
|
|
Plug 'ap/vim-css-color'
|
|
|
|
Plug 'arcticicestudio/nord-vim'
|
|
|
|
Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' }
|
|
Plug 'iamcco/markdown-preview.vim'
|
|
call plug#end()
|
|
|
|
set shiftwidth=4 " Make indents 4 chars wide
|
|
set expandtab " Expand tabs into spaces
|
|
set number " Set line numbers
|
|
set mouse=a " Allow mouse
|
|
set signcolumn=yes " Always show extra column
|
|
|
|
autocmd BufEnter * call ncm2#enable_for_buffer() " Enable ncm2 for all buffers
|
|
set completeopt=noinsert,menuone
|
|
|
|
autocmd FileType crystal setlocal shiftwidth=2
|
|
|
|
let g:LanguageClient_serverCommands = {
|
|
\ 'haskell': ['hie', '--lsp'],
|
|
\ 'rust': ['rustup', 'run', 'stable', 'rls'],
|
|
\ 'c': ['clangd'],
|
|
\ 'crystal': ['scry'],
|
|
\ 'cpp': ['clangd'],
|
|
\ 'javascript': ['javascript-typescript-stdio']
|
|
\ }
|
|
let g:deoplete#enable_at_startup = 1
|
|
|
|
colorscheme nord
|