adelarsq/neoline.vim

github github
bars-and-linesstatusline
stars 224
issues 11
subscribers 4
forks 6
CREATED

2020-05-07

UPDATED

6 months ago


neoline.vim ✅

IMPORTANT: Requires Neovim Nightly

License: MIT

A light statusline/tabline plugin for Neovim using Lua.

Using neoline.vim with material dark theme, vim-emoji-icon-theme, petertriho/nvim-scrollbar, hrsh7th/nvim-cmp and nvim-neo-tree/neo-tree.nvim:

Installation 🧙

Lazy

Add the following lines on the NeoVim config file (Lua):

require('lazy').setup({
  {
    'https://github.com/adelarsq/neoline.vim'
  },
}, {})

Plug

Add the following lines on the Vim/NeoVim config file:

Plug 'https://github.com/adelarsq/neoline.vim'

Then open the editor and install with PlugInstall.

Dein

Add the following lines on the Vim/NeoVim config file:

call dein#add('adelarsq/neoline.vim')

Then open the editor and install with call dein#install().

Packer

use 'adelarsq/neoline.vim'

Features ⚙️

Options ✅

Disabling the statusline:

vim.g.neoline_disable_statusline=1
-- or with VimScript
set g:neoline_disable_statusline=1

Disabling the tabline:

vim.g.neoline_disable_tabline=1
-- or with VimScript
set g:neoline_disable_tabline=1

Disabling current scope on the status line:

vim.g.neoline_disable_current_scope = 1 
-- or with VimScript
set g:neoline_disable_current_scope = 1 

Others 🦕

Acknowledgments 💡

Thanks goes to these people/projects for inspiration:

License 📜

MIT

Self-plug 🔌

If you liked this plugin, also check out:

  • vim-emoji-icon-theme - Emoji/Unicode Icons Theme for Vim and Neovim with support for 40+ plugins and 300+ filetypes
  • neovcs.vim - VCS support for Neovim