neovim update
Al mijn homies haten standaard PEP8 in vim.
This commit is contained in:
+8
-30
@@ -3,44 +3,22 @@ set bg=dark
|
||||
set clipboard=unnamedplus
|
||||
set nocompatible
|
||||
|
||||
set smartindent
|
||||
set tabstop=2
|
||||
set softtabstop=2
|
||||
set expandtab
|
||||
set smarttab
|
||||
set shiftwidth=2
|
||||
set autoindent
|
||||
set smartindent
|
||||
set nobackup
|
||||
set nowritebackup
|
||||
set updatetime=300
|
||||
set tabstop=4
|
||||
set noshowmode
|
||||
set ruler
|
||||
set list lcs=trail:·,tab:⭾\
|
||||
set noexpandtab
|
||||
set signcolumn=yes
|
||||
|
||||
set completeopt=longest,menuone,preview
|
||||
|
||||
" Use tab for trigger completion with characters ahead and navigate.
|
||||
inoremap <silent><expr> <TAB>
|
||||
\ coc#pum#visible() ? coc#pum#next(1) :
|
||||
\ CheckBackspace() ? "\<Tab>" :
|
||||
\ coc#refresh()
|
||||
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
||||
|
||||
set ruler " show the cursor position all the time
|
||||
|
||||
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 'tpope/vim-sensible'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'ap/vim-css-color'
|
||||
Plug 'calviken/vim-gdscript3'
|
||||
Plug 'ervandew/supertab'
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
call plug#end()
|
||||
|
||||
set noshowmode
|
||||
let g:python_recommended_style = 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user