No description
Find a file
2021-12-21 08:22:31 +01:00
.vim Colerschemes 2021-12-03 21:38:06 +01:00
.gitmodules clean + gitmodules(repo in repo) 2021-11-29 10:18:39 +01:00
.vimrc Colerschemes 2021-12-03 21:38:06 +01:00
README.md Update 'README.md' 2021-12-21 08:22:31 +01:00
vim.png new image, center and format 2021-12-02 12:43:20 +01:00

vim-settings

  • What's inside

    • A bunch of Settings (Numbers, Nocompatible, History, Mouse,...)
    • VIM Plugin Manager Plug
    • Plugins:
      • Easy Aalign
      • Nerdtree
      • Airline
    • Colors & Themes
      • vim-one
      • vim-code-dark
      • vim-airline-themes
  • Install

    • mkdir ~/.dotfiles
    • cd ~/.dotfiles
    • git clone --recurse-submodules -j8 https://git.gc4.at/linux/vim-settings.git
      • Use ssh if you want to commit also:
      • git clone --recurse-submodules -j8 SSH URL
      • --recurse-submodules -j8 is important since the Plugins in .vim/plugged are also remote repos (int his repo) = submodules
    • cd ~
    • mv .vim .vim_old && mv .vimrc .vimrc_old
    • ln -s .dotfiles/vim-settings/.vimrc
    • ln -s .dotfiles/vim-settings/.vim
    • Open vim and type :PlugInstall , to make sure all plugins are uptodate, then quit.
  • Update (Submodules included)

    • cd ~/.dotfiles/vim-settings
    • git pull --recurse-submodules