1
0
Files
dotfiles/.config/nvim/init.vim
T
mark 9e393bc8f9 neovim update
Al mijn homies haten standaard PEP8 in vim.
2023-01-29 13:09:38 +01:00

25 lines
501 B
VimL

let mapleader =","
set bg=dark
set clipboard=unnamedplus
set nocompatible
set tabstop=4
set noshowmode
set ruler
set list lcs=trail,tab:⭾\
set noexpandtab
set signcolumn=yes
set completeopt=longest,menuone,preview
set encoding=utf-8
set number relativenumber
call plug#begin(stdpath('data') . '/plugged')
Plug 'tpope/vim-sensible'
Plug 'itchyny/lightline.vim'
Plug 'ap/vim-css-color'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()
let g:python_recommended_style = 0