Skip to content

Instantly share code, notes, and snippets.

View texeltexel2009's full-sized avatar
🎯
Focusing

Arman Shahinyan texeltexel2009

🎯
Focusing
View GitHub Profile
@texeltexel2009
texeltexel2009 / .vimrc
Last active February 1, 2024 09:04
Vim personalization file
" Mouse support
set mouse=a
set ttymouse=sgr
set balloonevalterm
" Styled and colored underline support
let &t_AU = "\e[58:5:%dm"
let &t_8u = "\e[58:2:%lu:%lu:%lum"
let &t_Us = "\e[4:2m"
let &t_Cs = "\e[4:3m"
let &t_ds = "\e[4:4m"
@texeltexel2009
texeltexel2009 / docker-compose.yml
Last active April 23, 2018 11:26
Docker Compose - Wordpress Existing Basic with .ENV file
version: "3"
volumes:
wp-db-data:
services:
wp-db:
image: mysql:5.7
container_name: ww-mysql
# Load environment variables
env_file: .env
volumes: