1
0

neovim update

Al mijn homies haten standaard PEP8 in vim.
This commit is contained in:
2023-01-29 13:09:38 +01:00
parent 1ed329a2a7
commit 9e393bc8f9
+8 -30
View File
@@ -3,44 +3,22 @@ set bg=dark
set clipboard=unnamedplus set clipboard=unnamedplus
set nocompatible set nocompatible
set smartindent set tabstop=4
set tabstop=2 set noshowmode
set softtabstop=2 set ruler
set expandtab set list lcs=trail,tab:⭾\
set smarttab set noexpandtab
set shiftwidth=2
set autoindent
set smartindent
set nobackup
set nowritebackup
set updatetime=300
set signcolumn=yes set signcolumn=yes
set completeopt=longest,menuone,preview 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 encoding=utf-8
set number relativenumber set number relativenumber
vnoremap <C-c> "+y
map <C-p> "+P
call plug#begin(stdpath('data') . '/plugged') call plug#begin(stdpath('data') . '/plugged')
Plug 'mattn/emmet-vim' Plug 'tpope/vim-sensible'
Plug 'itchyny/lightline.vim' Plug 'itchyny/lightline.vim'
Plug 'ap/vim-css-color' Plug 'ap/vim-css-color'
Plug 'calviken/vim-gdscript3'
Plug 'ervandew/supertab'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end() call plug#end()
set noshowmode let g:python_recommended_style = 0