Remove all icons and emojis - keep it simple (KISS principle)

Changes:
- Replaced checkmarks with plain text in README.md
- Replaced emoji icons with [OK] in install.sh
- Changed ALE error/warning signs from unicode to ASCII (X and !)
- Removed rocket emoji from QUICKSTART.md
- All output now uses simple ASCII characters

Follows KISS (Keep It Simple, Stupid) principle for better:
- Terminal compatibility
- Accessibility
- Readability in all environments
- No font dependencies
This commit is contained in:
Claude 2025-12-30 00:29:35 +00:00
parent 2941614b45
commit 0ea76e6ae7
No known key found for this signature in database
4 changed files with 17 additions and 17 deletions

4
.vimrc
View file

@ -482,8 +482,8 @@ let g:ale_fixers = {
\} \}
let g:ale_fix_on_save = 1 let g:ale_fix_on_save = 1
let g:ale_sign_error = '' let g:ale_sign_error = 'X'
let g:ale_sign_warning = '' let g:ale_sign_warning = '!'
let g:ale_lint_on_text_changed = 'never' let g:ale_lint_on_text_changed = 'never'
let g:ale_lint_on_insert_leave = 0 let g:ale_lint_on_insert_leave = 0
let g:ale_lint_on_enter = 0 let g:ale_lint_on_enter = 0

View file

@ -11,10 +11,10 @@ git clone https://github.com/m1ngsama/chopsticks.git ~/.vim && cd ~/.vim && ./in
``` ```
That's it! The script will: That's it! The script will:
- Backup your existing .vimrc - Backup your existing .vimrc
- Create symlink to the new configuration - Create symlink to the new configuration
- Install vim-plug - Install vim-plug
- Install all plugins automatically - Install all plugins automatically
### Manual Install ### Manual Install
@ -268,4 +268,4 @@ Print this for your desk:
└─────────────────────────────────────────────┘ └─────────────────────────────────────────────┘
``` ```
Happy Vimming! 🚀 Happy Vimming!

View file

@ -2,7 +2,7 @@
A comprehensive, modern Vim configuration optimized for engineering workflows. This configuration transforms vanilla Vim into a powerful, feature-rich development environment with enterprise-grade tooling. A comprehensive, modern Vim configuration optimized for engineering workflows. This configuration transforms vanilla Vim into a powerful, feature-rich development environment with enterprise-grade tooling.
**✨ New: Quick installation script and enhanced engineering features!** **NEW: Quick installation script and enhanced engineering features!**
## Quick Start ## Quick Start
@ -56,11 +56,11 @@ cd ~/.vim
``` ```
The installation script will: The installation script will:
- Backup your existing configuration - Backup your existing configuration
- Create necessary symlinks - Create necessary symlinks
- Install vim-plug automatically - Install vim-plug automatically
- Install all plugins - Install all plugins
- Offer to install CoC language servers - Offer to install CoC language servers
### Manual Installation ### Manual Installation

View file

@ -58,16 +58,16 @@ if [ ! -f "$VIM_PLUG_PATH" ]; then
print_status "Installing vim-plug..." print_status "Installing vim-plug..."
curl -fLo "$VIM_PLUG_PATH" --create-dirs \ curl -fLo "$VIM_PLUG_PATH" --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
echo -e "${GREEN}${NC} vim-plug installed successfully" echo -e "${GREEN}[OK]${NC} vim-plug installed successfully"
else else
echo -e "${GREEN}${NC} vim-plug already installed" echo -e "${GREEN}[OK]${NC} vim-plug already installed"
fi fi
# Install plugins # Install plugins
print_status "Installing Vim plugins..." print_status "Installing Vim plugins..."
vim +PlugInstall +qall vim +PlugInstall +qall
echo -e "\n${GREEN}${NC} ${BOLD}Installation complete!${NC}\n" echo -e "\n${GREEN}[OK]${NC} ${BOLD}Installation complete!${NC}\n"
# Print optional dependencies # Print optional dependencies
echo -e "${BOLD}Optional Dependencies (Recommended):${NC}" echo -e "${BOLD}Optional Dependencies (Recommended):${NC}"
@ -101,7 +101,7 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
print_error "Node.js is not installed. Please install Node.js first." print_error "Node.js is not installed. Please install Node.js first."
else else
vim -c "CocInstall -sync coc-json coc-tsserver coc-pyright coc-sh coc-html coc-css coc-yaml|q" vim -c "CocInstall -sync coc-json coc-tsserver coc-pyright coc-sh coc-html coc-css coc-yaml|q"
echo -e "${GREEN}${NC} CoC language servers installed" echo -e "${GREEN}[OK]${NC} CoC language servers installed"
fi fi
fi fi