1
0
Fork
You've already forked garden.vim
0
No description
  • Vim Script 94.5%
  • Shell 5.5%
2025年01月16日 13:37:19 -05:00
colors added forced highlights to make switching between themes nicer 2025年01月16日 13:24:09 -05:00
install.sh first commit 2024年11月23日 22:43:40 -05:00
LICENSE first commit 2024年11月23日 22:43:40 -05:00
README.md fixed url in readme 2025年01月16日 13:37:19 -05:00
screenshot.png first commit 2024年11月23日 22:43:40 -05:00

garden.vim

a vim colorscheme mimicking the feel community gardens.

Screenshot

Installing garden.vim

This section describes how to install the garden 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/garden.vim'
    
  2. Restart Vim.

  3. In Vim, run :PlugInstall.

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

     colorscheme garden
    

Using the install.sh script

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

  2. Run cd garden.vim

  3. Run ./install.sh

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

     colorscheme garden
    

Installing manually

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

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

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

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

     colorscheme garden
    

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.