dotfiles/common/.config/nvim/init.lua.org
2024-10-01 17:42:59 -05:00

1 KiB

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]])

Fix unable to open swap file issue.

  vim.cmd([[set directory=~/.local/share/nvim/swap//]])

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')