Skip to content

stilla-theme/stilla.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jakeisnt/stilla.nvim

Still :: A quiet, introverted theme that stays out of your way.

Features

⚡️ Requirements

  • Neovim >= 0.5.0

🌙 Installation

Install via your favourite package manager:

" If you are using Vim-Plug
Plug 'jakeisnt/stilla.nvim'
-- If you are using Packer
use 'jakeisnt/stilla.nvim'

🌓 Usage

Enable the colorscheme:

"Vim-Script:
colorscheme stilla
--Lua:
vim.cmd[[colorscheme stilla]]

To enable the nord theme for Lualine, simply specify it in your lualine settings:

require('lualine').setup {
  options = {
    -- ... your lualine config
    theme = 'stilla'
    -- ... your lualine config
  }
}

⚙️ Configuration

Option Default Description
stilla_contrast false Make sidebars and popup menus like nvim-tree and telescope have a different background
stilla_borders false Enable the border between verticaly split windows visable
stilla_disable_background false Disable the setting of background color so that NeoVim can use your terminal background
stilla_cursorline_transparent false Set the cursorline transparent/visible
stilla_enable_sidebar_background false Re-enables the backgrond of the sidebar if you disabled the background of everything
stilla_italic true enables/disables italics
-- Example config in lua
vim.g.stilla_contrast = true
vim.g.stilla_borders = false
vim.g.stilla_disable_background = false
vim.g.stilla_italic = false

-- Load the colorscheme
require('stilla').set()
" Example config in Vim-Script
let g:stilla_contrast = v:true
let g:stilla_borders = v:false
let g:stilla_disable_background = v:false
let g:stilla_italic = v:false

" Load the colorscheme
colorscheme stilla

Inspiration

Uses a framework established by shaunsingh/nord.nvim. The entire color scheme has been changed, but all credit for the structure of the repository goes to them.

Releases

No releases published

Packages

No packages published

Languages

  • Lua 99.4%
  • Vim Script 0.6%