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
autoload -Uz compinit promptinit vcs_info | |
compinit | |
promptinit | |
HISTSIZE=10000 | |
SAVEHIST=10000 | |
HISTORY_IGNORE="(export *|ls *|cd *|pwd|exit|history|git *|vim *|ollama *|zed *)" | |
precmd_vcs_info() { vcs_info } | |
precmd_functions+=( precmd_vcs_info ) |
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
" vim rc | |
set nocompatible | |
filetype on | |
filetype plugin on | |
filetype indent on | |
syntax on | |
set relativenumber | |
set cursorline | |
set history=10000 | |
set wildmenu |