A neovim configuration that looks good and is fast (startuptime < 0.5s).
Tested on a pretty low end laptop
On Power : 0.015s - 0.025s
On Battery : 0.025s - 0.045s
On Power (with firefox and discord) : 0.020s - 0.035s
On Battery (with firefox and discord) : 0.025s - 0.045s
Has something like 29 plugins and but is still fast becuase of holy lazy loading.
It's really easy , just a simple one liner with git!
~ $ git clone --depth 1 https://github.com/dark-Jedi2108/nvide ~/.config/nvim
~ $ nvim +PackerSync
Add this to your shell config
# this is for zsh
export PATH=$PATH:~/.local/share/nvim/mason/bin
~ $ source ~/.zshrc
I know it sucks but you will have to do it manually
/lua/themes/colorschemes/scheme.lua
(copy the default colorscheme and change the colors)/colors/scheme.lua
-- /colors/scheme.lua
require("themes").setup({
theme = "scheme",
transparent_background = false
})
init.lua
vim.cmd.colorscheme("scheme")
Warning: This section contains the worst ever code written There are three prebuilt styles
/lua/core/options.lua
DEFAULT_STATUS_STYLE
variable in line 65local DEFAULT_STATUS_STYLE = 'minimal' -- minimal | fancy | monochrome
This config wouldn't have been possible without these chads!