UbuntuのVimの設定でdeinを設定した件

Vimの設定で、

それぞれの環境を設定するときに、

設定方法をちょっと忘れることがあるので、

メモしておく。

deinのGithub

deinのGithubのページを確認。

リンクをメモ。

deinの設定

Githubに記載がある通り、

以下のコマンドを実施。

curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
# For example, we just use `~/.cache/dein` as installation directory
sh ./installer.sh ~/.cache/dein

インストール実施後

上記で実行すると、

Please add the following settings for dein to the top of your vimrc (Vim) or init.vim (NeoVim) file:


"dein Scripts-----------------------------
if &compatible
  set nocompatible               " Be iMproved
endif

" Required:
set runtimepath+=/root/.cache/dein/repos/github.com/Shougo/dein.vim

" Required:
call dein#begin('/root/.cache/dein')

" Let dein manage dein
" Required:
call dein#add('/root/.cache/dein/repos/github.com/Shougo/dein.vim')

" Add or remove your plugins here like this:
"call dein#add('Shougo/neosnippet.vim')
"call dein#add('Shougo/neosnippet-snippets')

" Required:
call dein#end()

" Required:
filetype plugin indent on
syntax enable

" If you want to install not installed plugins on startup.
"if dein#check_install()
"  call dein#install()
"endif

"End dein Scripts-------------------------

このように、

設定情報をdein scriptとして、

追加するように促されるので、

その設定を追加。

あとは、

個別に自分が必要な設定情報を追加。

個人的な初期設定をメモ。

set enc=utf-8
set tabstop=2
set softtabstop=2
set autoindent
set smartindent
set cindent
set expandtab
set shiftwidth=2
set cursorcolumn

if &compatible
  set nocompatible
endif
set runtimepath+=~/.cache/dein/repos/github.com/Shougo/dein.vim

if dein#load_state('~/.cache/dein')
  call dein#begin('~/.cache/dein')

  call dein#add('~/.cache/dein')
  call dein#add('Shougo/deoplete.nvim')
  if !has('nvim')
    call dein#add('roxma/nvim-yarp')
    call dein#add('roxma/vim-hug-neovim-rpc')
  endif

  call dein#add('scrooloose/syntastic')
  "call dein#add('Yggdroot/indentLine')

  call dein#add('posva/vim-vue')

  " color scheme
  call dein#add('tomasr/molokai')
  call dein#add('fmoralesc/molokayo')

  call dein#end()
  call dein#save_state()
endif

if dein#check_install()
  call dein#install()
endif

filetype plugin indent on
syntax enable
colorscheme molokayo

"hi Visual term=reverse cterm=reverse guibg=green
hi Visual term=NONE cterm=NONE guibg=green

set cursorline
highlight CursorLine cterm=underline ctermfg=NONE ctermbg=NONE
highlight CursorLine gui=underline guifg=yellow guibg=NONE

スキルを使って、就職/転職/副業する時のサイト

プログラミングのスキルなどを、自分なりに高めた上で、

自分のスキルをアピールして就職や転職を行い、年収をあげるか、

副業という形で、年収にプラスアルファの稼ぎを増やすことはできます。

まずはできる範囲で取り組むことで、

少しずつ、経験値も増え、自分のスキルが収入につながるのでおすすめです。

おすすめ書籍

広告

おすすめ記事