dotfiles/config/nvim/init.org
2024-08-07 14:58:48 -05:00

989 B

Neovim Settings

This is the entry point for my Neovim configuration.

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

Set up formatting options in the format.lua file.

require('format')

Set up language servers in the languageServers.lua file.

require('languageServers')

Set up auto-complete in the autocomplete.lua file.

require('autocomplete')