Skip to content

sirfz/dotvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Requirements:

  • vim8/neovim with Python 3.6+ support
  • pip3 install --user pynvim (for deoplete.nvim)
  • pip3 install --user jedi (for deoplete-jedi)
  • pip3 install --user flake8 pylint (for ale Python linting)
  • fd for CtrlP search (switched LeaderF)

Transitioning from Vim to NeoVim

  1. To start the transition, create your init.vim (user config) file:
    :call mkdir(stdpath('config'), 'p')
    :exe 'edit '.stdpath('config').'/init.vim'
  1. Add these contents to the file:
    set runtimepath^=~/.vim runtimepath+=~/.vim/after
    let &packpath = &runtimepath
    source ~/.vimrc
  1. Restart Nvim, your existing Vim config will be loaded.

Installation:

git clone git://github.com/sirfz/dotvim.git ~/.vim
Create symlinks:
ln -s ~/.vim/vimrc ~/.vimrc

To install all plugins, run (using vim-plug):

vim +PlugUpdate

Releases

No releases published

Packages

No packages published