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
" Basic Settings | |
set nocompatible " Use Vim settings rather than Vi settings | |
filetype plugin indent on " Enable file type detection and plugin/indent loading | |
syntax enable " Enable syntax highlighting | |
set encoding=UTF-8 " Set encoding to UTF-8 | |
set termencoding=utf-8 " Set terminal encoding to UTF-8 | |
set number " Show line numbers | |
set cursorline " Highlight current line | |
set showmatch " Show matching brackets | |
set incsearch " Incremental search |
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
git config --global alias.review '!f() { git add -A && git diff --staged | sgpt \"Generate a detailed code review\"; }; f' |
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
git config --global alias.aicommit '!f() { git add -A && git diff --staged | sgpt "Create a concise commit message with: summary (50 chars) + optional bullet points for details. Do not add headings." | git commit -F -; }; f' |
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
# Oxide theme for Zsh | |
# | |
# Author: Diki Ananta <diki1aap@gmail.com> | |
# Repository: https://github.com/dikiaap/dotfiles | |
# License: MIT | |
# Prompt: | |
# %F => Color codes | |
# %f => Reset color | |
# %~ => Current path |