adelarsq / neoline.vim

Status Line for Neovim focused on beauty and performance βœ…πŸ’™πŸ’›πŸ€πŸ’š

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 πŸ§™

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

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

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.

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().

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

About

Status Line for Neovim focused on beauty and performance βœ…πŸ’™πŸ’›πŸ€πŸ’š

License:MIT License


Languages

Language:Lua 97.2%Language:Vim Script 2.3%Language:JavaScript 0.5%