Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
call plug#begin('~/.local/share/nvim/plugged') | |
Plug 'tpope/vim-fugitive' | |
Plug 'airblade/vim-gitgutter' | |
Plug 'martinda/Jenkinsfile-vim-syntax' | |
Plug 'c9s/phpunit.vim' | |
Plug 'scrooloose/nerdtree' | |
Plug 'jistr/vim-nerdtree-tabs' | |
Plug 'kien/ctrlp.vim' | |
Plug 'easymotion/vim-easymotion' | |
Plug 'StanAngeloff/php.vim' |
#!/usr/bin/env bash | |
set -eu | |
sudo dd if=/dev/zero of=/var/swapfile bs=1M count=4096 | |
sudo mkswap /var/swapfile | |
sudo chmod 600 /var/swapfile | |
sudo swapon /var/swapfile | |
sudo cat /proc/swaps | |
echo "/var/swapfile swap swap defaults 0 0" | sudo tee -a /etc/fstab |
This guide will cover the basics on how to integrate emacs with protonmail-bridge using
version: "3.3" | |
services: | |
################################################ | |
#### Traefik Proxy Setup ##### | |
############################################### | |
traefik: | |
image: traefik:v2.0 | |
restart: always |
[xdebug] | |
xdebug.start_with_request=yes | |
xdebug.discover_client_host=true | |
xdebug.max_nesting_level=256 | |
xdebug.remote_handler=dbgp | |
xdebug.client_port=9000 | |
xdebug.idekey=VSCODE | |
xdebug.mode=debug | |
xdebug.client_host=host.docker.internal |
# Set vi key bindings mode | |
set -g mode-keys vi | |
set -g status-keys vi | |
# Set new panes to open in current directory | |
bind c new-window -c "#{pane_current_path}" | |
bind '"' split-window -c "#{pane_current_path}" | |
bind % split-window -h -c "#{pane_current_path}" | |
# List of plugins |
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
# Initialization code that may require console input (password prompts, [y/n] | |
# confirmations, etc.) must go above this block; everything else may go below. | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH |