Skip to content

Instantly share code, notes, and snippets.

View vicheanath's full-sized avatar
🎯
Focusing

Vichea vicheanath

🎯
Focusing
View GitHub Profile
@vicheanath
vicheanath / doge.gif
Last active November 9, 2023 04:48
happy doge
doge.gif
@vicheanath
vicheanath / vim_tips.md
Created March 22, 2023 06:59 — forked from Starraider/vim_tips.md
Tips & Tricks for Vim/NeoVim

Tips & Tricks for Vim/NeoVim

Keyboard Shortcuts

Be aware the following shortcuts are only working, if you have the plugins installed mentioned below.

In Command Mode:

:w              Save file

:w filename Save file under new filename

@vicheanath
vicheanath / nginx.conf
Created December 21, 2020 16:36 — forked from ulyssesr/nginx.conf
Nginx RTMP Setup
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;