update sway

This commit is contained in:
Marco Thomas
2022-06-24 17:37:12 +02:00
parent f512b50337
commit cc53811c51
4 changed files with 18 additions and 12 deletions

View File

@@ -13,13 +13,14 @@ endif
call plug#begin()
Plug 'altercation/vim-colors-solarized' " color scheme
Plug 'tpope/vim-sleuth' " heuristic file indendation
Plug 'jiangmiao/auto-pairs' " pair completion
Plug 'ctrlpvim/ctrlp.vim' " file finder
Plug 'djoshea/vim-autoread' " auto reload file, when changed on disk
Plug 'altercation/vim-colors-solarized' " color scheme
Plug 'vim-airline/vim-airline' " a nicer status line
Plug 'vim-airline/vim-airline-themes' " auto settings theme for airline
Plug 'djoshea/vim-autoread' " auto reload file, when changed on disk
call plug#end()
" ============================== Colors
@@ -35,6 +36,7 @@ set relativenumber " show relative line number
set cursorline " highlight current line
set ruler " show line and row at bottom right
set colorcolumn=80
set nowrap " don't wrap lines
set showmatch " highlights paranthesis
set hidden " allow moving to a new buffer without saving
@@ -45,10 +47,12 @@ set noshowcmd " don't show command in status
set encoding=utf-8
set mouse=a " a=on, c=off
set undolevels=1337
set backspace=indent,eol,start " always delete with backspace"
set backspace=indent,eol,start " always delete with backspace
set wildmenu " autocomplete :e
set scrolloff=5 " minimum lines above or below the cursor
let g:ctrlp_show_hidden = 1
" ============================== Statusline
set laststatus=1 " 1: only if there are at least two windows
set showtabline=1 " 1: only if there are at least two tab pages
@@ -81,6 +85,4 @@ let g:netrw_liststyle = 3 " Tree-like structure
let g:netrw_banner = 0 " Remove useless banner at the top of netrw
" ============================== Macros and Mappings
" hello
map <leader>e :CtrlP<CR>