Skip to content

Instantly share code, notes, and snippets.

View EnergeticPixels's full-sized avatar
🏠
Always Working

Anthony Jackman EnergeticPixels

🏠
Always Working
  • Energetic Pixels
  • Albertville, MN, USA
  • 03:58 (UTC -05:00)
View GitHub Profile
@EnergeticPixels
EnergeticPixels / .vimrc
Created August 7, 2026 23:36
Vim 9.2 config
" old and unneccesary in modern world
" set nocompatible
" turn on 256 bit color display
set t_Co=256
" makes it easy to read code in vim
syntax on
" set text format options
@EnergeticPixels
EnergeticPixels / speedingUpVagrantFolders.md
Last active May 22, 2019 02:01
Speeding up Vagrant Synced folders

Setting basic synced folder is easy:

[code] config.vm.synced_folder 'src/' '/srv/website' [/code]

This can be very slow and might get in the way if you are developing on host machine and allowing the sync to happen to see results in the guest machine (vue.js with webpack).

Vagrant synced folders has three 'alternatives':

  • NFS (Network File System). default remote file system for *nix.
  • RSync: Slower than NFS, but this might serve as a failsafe. But remember this is a one-way sync.