diff --git a/.vimrc b/.vimrc index 9e56e59..891a969 100644 --- a/.vimrc +++ b/.vimrc @@ -482,8 +482,8 @@ let g:ale_fixers = { \} let g:ale_fix_on_save = 1 -let g:ale_sign_error = '✗' -let g:ale_sign_warning = '⚠' +let g:ale_sign_error = 'X' +let g:ale_sign_warning = '!' let g:ale_lint_on_text_changed = 'never' let g:ale_lint_on_insert_leave = 0 let g:ale_lint_on_enter = 0 diff --git a/QUICKSTART.md b/QUICKSTART.md index fb98685..126c3c2 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -11,10 +11,10 @@ git clone https://github.com/m1ngsama/chopsticks.git ~/.vim && cd ~/.vim && ./in ``` That's it! The script will: -- ✓ Backup your existing .vimrc -- ✓ Create symlink to the new configuration -- ✓ Install vim-plug -- ✓ Install all plugins automatically +- Backup your existing .vimrc +- Create symlink to the new configuration +- Install vim-plug +- Install all plugins automatically ### Manual Install @@ -268,4 +268,4 @@ Print this for your desk: └─────────────────────────────────────────────┘ ``` -Happy Vimming! 🚀 +Happy Vimming! diff --git a/README.md b/README.md index bb7a11f..2d98748 100644 --- a/README.md +++ b/README.md @@ -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. -**✨ New: Quick installation script and enhanced engineering features!** +**NEW: Quick installation script and enhanced engineering features!** ## Quick Start @@ -56,11 +56,11 @@ cd ~/.vim ``` The installation script will: -- ✓ Backup your existing configuration -- ✓ Create necessary symlinks -- ✓ Install vim-plug automatically -- ✓ Install all plugins -- ✓ Offer to install CoC language servers +- Backup your existing configuration +- Create necessary symlinks +- Install vim-plug automatically +- Install all plugins +- Offer to install CoC language servers ### Manual Installation diff --git a/install.sh b/install.sh index 3bdaac8..c71a04d 100755 --- a/install.sh +++ b/install.sh @@ -58,16 +58,16 @@ if [ ! -f "$VIM_PLUG_PATH" ]; then print_status "Installing vim-plug..." curl -fLo "$VIM_PLUG_PATH" --create-dirs \ 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 - echo -e "${GREEN}✓${NC} vim-plug already installed" + echo -e "${GREEN}[OK]${NC} vim-plug already installed" fi # Install plugins print_status "Installing Vim plugins..." 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 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." else 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