Skip to content

Instantly share code, notes, and snippets.

View 5PK's full-sized avatar
👓

Kevin Tran 5PK

👓
View GitHub Profile
@5PK
5PK / .tmux.conf
Last active September 26, 2025 12:59
my tmux conf file
# -------------------------
# Theme (base16-like)
# -------------------------
set -g status-style bg=black,fg=white
set -g window-status-current-style bg=black,fg=white,bold
set -g window-status-style bg=black,fg=brightblack
set -g message-style bg=black,fg=white
set -g mode-style bg=blue,fg=black
@5PK
5PK / init.lua
Last active September 5, 2024 11:55
My init.lua file. Trying to get back into using a vim-like editor.
-- Bootstrap packer.nvim if it's not already installed
local ensure_packer = function()
local fn = vim.fn
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
vim.cmd [[packadd packer.nvim]]
return true
end
return false
@5PK
5PK / .vimrc
Created January 4, 2019 22:57
This is my .vimrc file. I use vim as my primary code editor.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required