- Install phpcs as per their readme and add a phpcs.xml to the root of the project with your rules.
- Install
Coc-diagnostic(:CocInstall coc-diagnostic)
On you ~/.config/nvim/coc-settings.json
{
| [*.js] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| indent_style = space | |
| indent_size = 2 | |
| trim_trailing_whitespace = true |
| " TODO: split up config into multiple files | |
| " source $HOME/.config/nvim/vim-plug/plugins.vim | |
| " source $HOME/.config/nvim/<category>/<sub-category-filename>.vim | |
| " source $HOME/.config/nvim/<plug-config>/<plugin-name>.vim | |
| set nocompatible | |
| filetype off | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs |
| git filter-branch --env-filter ' | |
| OLD_EMAIL="[email protected]" | |
| CORRECT_NAME="erick patrick" | |
| CORRECT_EMAIL="[email protected]" | |
| if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] | |
| then | |
| export GIT_COMMITTER_NAME="$CORRECT_NAME" | |
| export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL" | |
| fi | |
| if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ] |
[aqme] 254: AQDefaultDevice (1): skipping output stream 0 0 0x0. It is enough to plug an input method to make it stop.| export PATH=/usr/local/bin:$PATH | |
| # If you come from bash you might have to change your $PATH. | |
| export ZSH="/Users/<user>/.oh-my-zsh" | |
| ZSH_THEME="agnoster" | |
| export UPDATE_ZSH_DAYS=7 | |
| plugins=( | |
| git | |
| ) |
Place where to find rouge information
Place where to find more information about coloring
| let savedPosts = document.querySelectorAll('[data-action=remove-from-queue]') | |
| savedPosts.forEach(button => button.click()) |