# FSC VIM **Repository Path**: iyg/vim ## Basic Information - **Project Name**: FSC VIM - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-13 - **Last Updated**: 2021-04-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # .vim FSC dot file [![Build Status](https://travis-ci.org/iyuangang/.vim.svg?branch=master)](https://travis-ci.org/iyuangang/.vim) My vim dot file. `~/.vimrc` is removed and us `~/.vim/vimrc`. In this way version control can be easier. This profile can config vim ready in 5s. Fast,simple and credible.
    Preview Preview
The full choice of style options is available only when using [Nerd Fonts](https://github.com/ryanoasis/nerd-fonts). ### Recommended: Meslo Nerd Font patched for FSCVim Download these four ttf files: - [MesloLGS NF Regular.ttf](https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Regular.ttf) - [MesloLGS NF Bold.ttf](https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Bold.ttf) - [MesloLGS NF Italic.ttf](https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Italic.ttf) - [MesloLGS NF Bold Italic.ttf](https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Bold%20Italic.ttf) ## Linux & MacOS ### Follow the steps below Automatic by 1 line code. ``` curl https://bit.ly/FSCVIM -L > fsc.sh && sh fsc.sh ``` You can also manually operate it. 1. Backup your ~/.vimrc ``` cp ~/.vimrc ~/.vimrcbak ; cp -r ~/.vim ~/.vimbak ; rm -rf ~/.vimrc ~/.vim ``` 2. Clone this profile to you ~/.vim folder, run vim. ``` git clone https://github.com/iyuangang/.vim.git ~/.vim ; vim ``` Wait plugin auto install. Enjoy your fast and beauty new vim. ## Windows ### Follow the steps below 1. Download [install.cmd](https://raw.githubusercontent.com/iyuangang/scriptpool/master/install.cmd). 2. Run the cmd file as Administrator. 3. Open Gvim. Enjoy it. ## Instructions ### Check update ``` :PlugUpdate ``` ### Add plugin 1. Edit vim config file `vim ~/.vim/vimrc` 2. add plugin into ``` call plug#begin('~/.vim/plugged') ... call plug#end() ``` ### Delete plugin 1. delete plugin config code in vimrc. 2. `:PlugClean` ### Remove this profile ``` rm -rf ~/.vim ; cp ~/.vimrcbak ~/.vimrc ; cp -r ~/.vimbak ~/.vim ```