1
0
Fork
You've already forked default2.vim
0
No description
  • Vim Script 85%
  • Shell 15%
2025年01月20日 13:23:32 -05:00
colors made errors more readable 2025年01月20日 13:23:32 -05:00
install.sh first commit 2025年01月16日 13:45:46 -05:00
LICENSE first commit 2025年01月16日 13:45:46 -05:00
README.md first commit 2025年01月16日 13:45:46 -05:00
screenshot.png first commit 2025年01月16日 13:45:46 -05:00

default2.vim

an alternative default colorscheme for vim, where i just changed things that weren't easy on my eyes, like random bolds on bright colors, or the jarring white statusline.

Screenshot

Installing default2.vim

This section describes how to install the default2 colorscheme using one of the following methods:

Using vim-plug

If you use vim-plug, follow the steps below to install this colorscheme:

  1. Add the following line to your ~/.vimrc:

     Plug 'https://codeberg.org/m455/default2.vim'
    
  2. Restart Vim.

  3. In Vim, run :PlugInstall.

  4. Add the following line to your ~/.vimrc:

     colorscheme default2
    

Using the install.sh script

  1. Run git clone https://codeberg.org/m455/default2.vim

  2. Run cd default2.vim

  3. Run ./install.sh

  4. Add the following line to your ~/.vimrc:

     colorscheme default2
    

Installing manually

  1. Run git clone https://codeberg.org/m455/default2.vim

  2. Run mkdir -p "$HOME/.vim/colors"

  3. Run ln -sf default2.vim/colors/default2.vim "$HOME/.vim/colors/"

  4. Add the following line to your "$HOME/.vimrc":

     colorscheme default2
    

Note: This creates a symlink from this git repository to ~/.vim/colors, so you can run git pull && ./install.sh when you want retrieve updates for this colorscheme.