Skip to content

Instantly share code, notes, and snippets.

View philmein23's full-sized avatar
🤓

Phillip Nguyen philmein23

🤓
View GitHub Profile

Keybase proof

I hereby claim:

  • I am philmein23 on github.
  • I am philmein23 (https://keybase.io/philmein23) on keybase.
  • I have a public key ASAqpyHZCKBbssjyXmBjZskWEb3pjFJDu5waqTVVy5oVCQo

To claim this, I am signing this object:

@philmein23
philmein23 / .tmux.conf
Created April 30, 2022 21:44
Tmux Configuration
# ~/.tmux.conf
# unbind default prefix and set it to ctrl-a
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
# make delay shorter
set -sg escape-time 0
@philmein23
philmein23 / init.lua
Last active April 30, 2022 21:42
Nvim Configuration
-- Install packer
local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim'
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
vim.fn.execute('!git clone https://github.com/wbthomason/packer.nvim ' .. install_path)
end
local packer_group = vim.api.nvim_create_augroup('Packer', { clear = true })
vim.api.nvim_create_autocmd('BufWritePost', { command = 'source <afile> | PackerCompile', group = packer_group, pattern = 'init.lua' })
@philmein23
philmein23 / .zshrc
Last active February 28, 2022 19:44
my .zshrc script configuration
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/phillipnguyen/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
@philmein23
philmein23 / .block
Created July 10, 2017 02:12
fresh block
license: mit
@philmein23
philmein23 / .block
Last active June 19, 2017 04:02
fresh block
license: mit
var path = require('path');
var webpack = require('webpack');
var AureliaWebpackPlugin = require('aurelia-webpack-plugin')
module.exports = {
devtool: 'source-map',
entry: ['babel-polyfill',
'webpack-hot-middleware/client',
'./src/main'
],
@philmein23
philmein23 / .eslintrc
Last active May 11, 2016 03:49 — forked from AaronFilson/.eslintrc
401d7 ESLint config for Part 1
{
"env": {
"protractor": true,
"jasmine": true,
"es6": true,
"browser": true
},
"globals": {
"angular": false
},
var topAnswers = function() {
var request = {
site: 'stackoverflow',
order: 'desc',
sort: 'creation'
};
var topAnswers = function() {
var request = {
site: 'stackoverflow',
order: 'desc',
sort: 'creation'
};