This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 14 1 * * /bin/zsh ~/Documents/CustomScripts/updateNVM.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Specify a directory for plugins | |
" - For Neovim: stdpath('data') . '/plugged' | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.vim/plugged') | |
" Make sure you use single quotes | |
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
Plug 'junegunn/vim-easy-align' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port 13000 | |
unixsocket /var/run/redis/redis-13000.sock | |
pidfile /var/run/redis/redis-13000.pid | |
logfile /var/log/redis/redis-13000.log | |
dbfilename redis_cache.rdb | |
dir /var/lib/redis13000 | |
maxmemory 819mb | |
maxmemory-policy allkeys-lru |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port 12000 | |
unixsocket /var/run/redis/redis-12000.sock | |
pidfile /var/run/redis/redis-12000.pid | |
logfile /var/log/redis/redis-12000.log | |
dbfilename redis_socketio.rdb | |
dir /var/lib/redis12000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port 11000 | |
unixsocket /var/run/redis/redis-11000.sock | |
pidfile /var/run/redis/redis-11000.pid | |
logfile /var/log/redis/redis-11000.log | |
dbfilename redis_queue.rdb | |
dir /var/lib/redis11000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mysqld] | |
# GENERAL # | |
user = mysql | |
default-storage-engine = InnoDB | |
socket = /var/lib/mysql/mysql.sock | |
pid-file = /var/lib/mysql/mysql.pid | |
# MyISAM # | |
key-buffer-size = 32M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /usr/local/etc/redis13000.conf | |
# Redis port 13000 configuration for ERPNext | |
bind 127.0.0.1 ::1 | |
protected-mode yes | |
port 13000 | |
tcp-backlog 511 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /usr/local/etc/redis12000.conf | |
# Redis port 12000 configuration for ERPNext | |
bind 127.0.0.1 ::1 | |
protected-mode ye | |
port 12000 | |
tcp-backlog 511 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /usr/local/etc/redis11000.conf | |
# Redis port 11000 configuration for ERPNext | |
bind 127.0.0.1 ::1 | |
protected-mode yes | |
port 11000 | |
tcp-backlog 511 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NANORC(5) 2021" NANORC(5) | |
NAME | |
nanorc - GNU nano's configuration file | |
DESCRIPTION | |
The nanorc files contain the default settings for nano, a small and friendly editor. During startup, |