2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vimのステータスラインに時間を表示する

Last updated at Posted at 2019-05-28

#はじめに
最近vimを使い始めたばかりですが、vimを使いやすくするための設定を探しては導入しています。
ステータスラインをかっこよくしてくれるプラグインlightlineを使った環境で時間も表示してみました。

#環境

  • neovim
  • dein

#方法
関数を用意してligjtlineのコンポーネントとして呼び出す。

時間取得
function! g:Date()
    return strftime("%H:%M")
endfunction
設定
'component_function': {
  'date':  'Date',

シンプルな使用例も置いておきます。

dein.toml
[[plugins]]
repo = 'itchyny/lightline.vim'
hook_add = '''
 let g:lightline = {
 \ 'colorscheme': 'wombat',
  \ 'active': {
  \   'left': [
  \     ['mode', 'paste'],
  \     ['readonly', 'filename', 'modified'],
  \   ],
  \   'right': [
  \     ['lineinfo'],
  \     ['percent'],
  \     ['charcode','fileencoding','date'],
  \   ]
  \ },
  \ 'component_function': {
  \   'date':  'Date',
  \ },
  \ 'component_expand': {
  \ },
  \ 'component_type': {
  \ },
  \ }
function! g:Date()
    return strftime("%H:%M")
endfunction
'''
スクリーンショット 2019-05-28 20.32.29.png

#終わりに
実は導入に手こずってしまったのですが会社の先輩にフォローしていただきました!
vimmer優しい!

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?