Browse Source

add coc-python

master
Schneider 4 years ago
parent
commit
7e73fd44d0
Signed by: schneider GPG Key ID: 3F50B02A50039F3B
  1. 2
      init.vim
  2. 3
      zsh/aliases.zsh

2
init.vim

@ -43,7 +43,9 @@ Plug 'neoclide/coc-css', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-vimtex', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-html', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-yaml', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-python', { 'do': 'yarn install --frozen-lockfile' }
Plug 'marlonfan/coc-phpls', { 'do': 'yarn install --frozen-lockfile' }
Plug 'fannheyward/coc-sql', { 'do': 'yarn install --frozen-lockfile' }
" }}}
" html / templates{{{

3
zsh/aliases.zsh

@ -3,6 +3,7 @@ alias la='ls -la'
alias sagu='sudo apt update && sudo apt dist-upgrade'
alias sagi='sudo apt install '
alias notes='vim "+:NV"'
alias slog='sudo less /var/log/syslog'
alias v='f -e vim' # quick opening files with vim
alias o='a -e xdg-open' # quick opening files with xdg-open
@ -44,3 +45,5 @@ fi
alias dcu='sudo docker-compose up'
alias dcs='sudo docker-compose start'
alias dce='sudo docker-compose stop'
alias gcc='gcc -Wall -Wextra '
Loading…
Cancel
Save