1
0
Files
2024-07-05 18:30:58 +02:00

31 lines
617 B
VimL

let mapleader =","
set bg=dark
set clipboard=unnamedplus
set nocompatible
set tabstop=4
set shiftwidth=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 'dylanaraps/wal.vim'
Plug 'tpope/vim-sleuth'
Plug 'itchyny/lightline.vim'
Plug 'ap/vim-css-color'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()
colorscheme wal
highlight Normal guibg=NONE
let g:python_recommended_style = 0