1
0

adds neovim config

This commit is contained in:
2021-09-06 20:48:59 +02:00
parent e213cb3e21
commit 3986cfe38f
+27
View File
@@ -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