Popularity
7.6
Stable
Activity
0.0
Declining
622
11
51

Programming language: Vim Script
License: Apache License 2.0
Tags: Editors    

kotlin-vim alternatives and similar libraries

Based on the "Editors" category.
Alternatively, view kotlin-vim alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of kotlin-vim or a related project?

Add another 'Editors' Library

README

kotlin-vim

Installation

If you use Vim 8 or later, the recommended way is using Vim's built-in package manager:

git clone https://github.com/udalov/kotlin-vim.git ~/.vim/pack/plugins/start/kotlin-vim

Other plugin managers:

  • Vundle
    • add Plugin 'udalov/kotlin-vim' to your ~/.vimrc and run PluginInstall.
  • Pathogen
    • git clone https://github.com/udalov/kotlin-vim ~/.vim/bundle/kotlin-vim

Manual (for older versions of Vim)

  1. mkdir -p ~/.vim/{syntax,indent,ftdetect,ftplugin}
  2. cp syntax/kotlin.vim ~/.vim/syntax/kotlin.vim
  3. cp indent/kotlin.vim ~/.vim/indent/kotlin.vim
  4. cp ftdetect/kotlin.vim ~/.vim/ftdetect/kotlin.vim
  5. cp ftplugin/kotlin.vim ~/.vim/ftplugin/kotlin.vim
  6. If you use Syntastic: cp -r syntax_checkers/kotlin ~/.vim/syntax_checkers/
  7. Restart Vim
Enjoy!