adds neovim config
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
let mapleader =","
|
||||
set bg=dark
|
||||
set clipboard=unnamedplus
|
||||
set nocompatible
|
||||
set smartindent
|
||||
filetype plugin on
|
||||
syntax on
|
||||
set encoding=utf-8
|
||||
set number relativenumber
|
||||
vnoremap <C-c> "+y
|
||||
map <C-p> "+P
|
||||
|
||||
call plug#begin(stdpath('data') . '/plugged')
|
||||
Plug 'mattn/emmet-vim'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'ap/vim-css-color'
|
||||
Plug 'calviken/vim-gdscript3'
|
||||
Plug 'Shougo/deoplete-clangx'
|
||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||
call plug#end()
|
||||
let g:deoplete#enable_at_startup = 1
|
||||
call deoplete#custom#var('clangx', 'clang_binary', '/usr/bin/clang')
|
||||
|
||||
" Deoplete autocomplete with tab
|
||||
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
||||
|
||||
set noshowmode
|
||||
Reference in New Issue
Block a user