vim:config:using_vim_with_no_plugins

This is an old revision of the document!


VIM - Config - Using Vim with no plugins

set nocompatible number cursorline expandtab hlsearch visualbell tabstop=2 shiftwidth=2 syntax on

NOTE:

  • nocompatible: Stops odd issues.
    • Example: Using arrow keys in INSERT mode will send key sequences that are misinterpreted by vi.
  • number: Turn on line numbers.
  • cursorline: Highlight the current line.
  • expandtab: Convert tabs to spaces.
  • hlsearch: Highlight all search matches.
  • visualbell: Stop Vim from beeping at you when you make a mistake.
  • tabstop: Set tab size in spaces (this is for manual indenting).
  • shiftwidth: The number of spaces inserted for a tab (used for auto indenting).
  • syntax on: Enable basic syntax highlighting.

To try out this basic configuration use the -u flag.

  • For example, you can start Vim with no configuration
    vim -u NONE

    and then manually apply the configuration as shown above.

  • Or put the config into a separate file and start Vim with that configuration instead of your normal one
    vim -u ~/.vimrc-basic

    .


vim/config/using_vim_with_no_plugins.1666086357.txt.gz · Last modified: 2022/10/18 09:45 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki