dotfiles/config/nvim/init.org
2024-08-07 22:34:10 -05:00

893 B

Neovim Settings

This is the entry point for my Neovim configuration. I don't use Neovim much these days, so it is very stripped back from what it once was. Emacs is much comfier for most uses, so Neovim is mostly relegated to editing system configuration files.

Disable timeout to speed things up.

  vim.cmd([[set notimeout]])

Install plugins in the plugins.lua file.

  require('plugins')

Set up behaviour in the behaviour.lua file.

  require('behaviour')

Set up appearance in the appearance.lua file.

  require('appearance')