Skip to content

Commit

Permalink
✨ Use status line without any plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
takker99 committed Feb 11, 2022
1 parent 5d7f1c2 commit 496620e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions nvim/userautoload/init/basic.vim
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,29 @@ set hlsearch " 検索語をハイライト表示

set updatetime=100 " エディタの更新速度を速くする。

" status line
" references:
" - https://blog.htkyama.org/vimrm
" ファイル名表示
set statusline=%F
" 変更チェック表示
set statusline+=%m
" 読み込み専用かどうか表示
set statusline+=%r
" ヘルプページなら[HELP]と表示
set statusline+=%h
" プレビューウインドウなら[Prevew]と表示
set statusline+=%w
" これ以降は右寄せ表示
set statusline+=%=
" ファイルタイプ表示
set statusline+=%y
" file encoding
set statusline+=[%{&fileencoding}]
" ファイルフォーマット表示
set statusline+=[%{&fileformat}]
" 現在行数/全行数/パーセント
set statusline+=[L%l:C%c\ (%p%%)]

" I like highlighting strings inside C comments.
let c_comment_strings=1
Expand Down

0 comments on commit 496620e

Please sign in to comment.