Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

Neovimとdein.vimでエディタの環境構築

$
0
0

Neovim

terminal
$ brew install neovim/neovim/neovim
$ mkdir -p ~/.config/nvim/init.vim/
$ touch ~/.config/nvim/init.vim/init.vim

dein

terminal
$ mkdir -p ~/.vim/dein/repos/github.com/Shougo/dein.vim
$ git clone https://github.com/Shougo/dein.vim.git \
    ~/.vim/dein/repos/github.com/Shougo/dein.vim
$ mkdir ~/.vim/dein
~/.config/nvim/init.vim
lets:dein_path = expand('~/.vim/dein')if&compatiblesetnocompatibleendifsetruntimepath+=~/.vim/dein/repos/github.com/Shougo/dein.vimif dein#load_state(s:dein_path)call dein#begin(s:dein_path)call dein#add('Shougo/dein.vim')call dein#end()call dein#save_state()endifif dein#check_install()call dein#install()endiffiletype plugin indent onsyntax enable

vim-colors-solarized

~/.config/nvim/init.vim
call dein#add('altercation/vim-colors-solarized')letg:solarized_termcolors=256syntax enable
setbackground=darkcolorscheme solarized

deoplete

terminal
$ brew install python3
$ pip3 install neovim
~/.config/nvim/init.vim
call dein#add('Shougo/deoplete.nvim')letg:deoplete#enable_at_startup =1

vimrc

~/.config/nvim/init.vim
setclipboard=unnamed

TODO


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>