Switch to vim by default and add template for plugins
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Alexander Schäferdiek 2022-09-08 16:37:42 +02:00
parent 6012c3aa57
commit eb3a1178b6
3 changed files with 2828 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,6 @@
" to use themes, comment out the example themes (Plug and below)
" enter vim and type :PlugInstall or :PlugUpdate
filetype plugin indent on filetype plugin indent on
syntax on syntax on
@ -21,6 +24,18 @@ set wmnu
" disable folding " disable folding
set nofoldenable set nofoldenable
" Specify a directory for plugins
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
"Plug 'chriskempson/base16-vim'
"Plug 'dracula/vim', { 'as': 'dracula' }
"Plug 'junegunn/vim-easy-align'
" Initialize plugin system
call plug#end()
"colorscheme base16-atelier-forest
"colorscheme dracula
if has('gui_running') if has('gui_running')
set go=m set go=m
endif endif

View file

@ -1,2 +1,2 @@
# misc # misc
export EDITOR="nano" export EDITOR="vim"