From 9e393bc8f90cacd77bd1adb815389f228b785072 Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Sun, 29 Jan 2023 13:09:38 +0100 Subject: [PATCH] neovim update Al mijn homies haten standaard PEP8 in vim. --- .config/nvim/init.vim | 38 ++++++++------------------------------ 1 file changed, 8 insertions(+), 30 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 20398e1..ffdc16b 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -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 - \ coc#pum#visible() ? coc#pum#next(1) : - \ CheckBackspace() ? "\" : - \ coc#refresh() -inoremap coc#pum#visible() ? coc#pum#prev(1) : "\" - -set ruler " show the cursor position all the time - -filetype plugin on -syntax on set encoding=utf-8 set number relativenumber -vnoremap "+y -map "+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 +