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
generated May 05, 2024 13:01:30 | |
system "Gentoo Linux" Linux 5.15.90.4-microsoft-standard-WSL2 x86_64 | |
emacs 29.3 EMACSDIR=~/.config/emacs/ EMACS=/usr/bin/emacs | |
doom 3.0.0-pre PROFILE=_@0 HEAD -> master, origin/master, origin/HEAD 9620bb45a 2024-04-18 14:20:48 -0400 ~/.config/doom/ | |
shell /bin/bash | |
features ACL CAIRO FREETYPE GIF GLIB GMP GNUTLS IMAGEMAGICK JPEG JSON LCMS2 LIBXML2 MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SQLITE3 THREADS TIFF TREE_SITTER | |
WEBP X11 XDBE XIM XINPUT2 XPM XWIDGETS GTK3 ZLIB | |
traits batch envvar-file | |
modules :config use-package :completion company vertico :ui doom doom-quit (emoji +unicode) hl-todo ligatures ophints (vc-gutter +pretty) (window-select +numbers) workspaces zen | |
:editor evil file-templates fold format multiple-cursors snippets :emacs dired electric ibuffer undo vc :term vterm :checkers syntax spell grammar :tools (docker +lsp) |
This file has been truncated, but you can view the full file.
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
;; -*- lisp-interaction -*- | |
;; vim: set ft=lisp: | |
;; command=("emacs" "--load" "/home/sukbeom/.config/emacs/bin/doom" "--" "doctor") | |
;; date="2024-05-05 11-42-03" | |
;;;; ENVIRONMENT | |
GNU Emacs v29.3 nil | |
Doom core v3.0.0-pre HEAD -> master, origin/master, origin/HEAD 9620bb45a 2024-04-18 14:20:48 -0400 | |
Doom modules v24.04.0-pre HEAD -> master, origin/master, origin/HEAD 9620bb45a 2024-04-18 14:20:48 -0400 |
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
#!/bin/bash | |
# This is a script to generate a zip file containing changes in a git | |
# repository. Some customers require zip file of changes without any concerning | |
# about detail of it, looking into commit messages :(. To make it better, this | |
# script generates both customer's want and normaal patches. | |
echo 'Generate a zip-version patch ...' | |
GIT_ROOT=$(git rev-parse --show-toplevel) |
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
#!/bin/bash | |
TMUX_VERSION=2.3 | |
NCURSES_VERSION=6.0 | |
LIBEVENT_VERSION=2.0.22 | |
BASEDIR=${HOME}/work/tmux-static | |
TMUXTARGET=${BASEDIR}/local | |
mkdir -p $TMUXTARGET | |
cd $BASEDIR |
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
--- | |
Language: Cpp | |
# BasedOnStyle: LLVM | |
AccessModifierOffset: -2 | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveAssignments: false | |
AlignConsecutiveDeclarations: false | |
AlignEscapedNewlines: Right | |
AlignOperands: true | |
AlignTrailingComments: true |
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
# This is personal bash_profile | |
export TERM=xterm-256color | |
function cd | |
{ | |
if [ $# -eq 0 ]; then | |
pushd ~ > /dev/null | |
elif [ " $1" = " -" ]; then | |
pushd "$OLDPWD" > /dev/null | |
else |