diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 14:58:48 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 14:58:48 -0500 |
commit | 341c3be75228dbd23fd05208d148acecf950d573 (patch) | |
tree | ecac1a33408f61c9816c56f97a2b617ab425c68e /config/nvim/init.org |
initial commit
Diffstat (limited to 'config/nvim/init.org')
-rw-r--r-- | config/nvim/init.org | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/config/nvim/init.org b/config/nvim/init.org new file mode 100644 index 0000000..703e8e2 --- /dev/null +++ b/config/nvim/init.org @@ -0,0 +1,37 @@ +#+title: Neovim Settings +This is the entry point for my Neovim configuration. + +Disable timeout to speed things up. +#+begin_src lua :tangle yes +vim.cmd([[set notimeout]]) +#+end_src + +Install plugins in the [[./lua/plugins.org][plugins.lua]] file. +#+begin_src lua :tangle yes +require('plugins') +#+end_src + +Set up behaviour in the [[./lua/behaviour.org][behaviour.lua]] file. +#+begin_src lua :tangle yes +require('behaviour') +#+end_src + +Set up appearance in the [[./lua/appearance.org][appearance.lua]] file. +#+begin_src lua :tangle yes +require('appearance') +#+end_src + +Set up formatting options in the [[./lua/format.org][format.lua]] file. +#+begin_src lua :tangle yes +require('format') +#+end_src + +Set up language servers in the [[./lua/languageServers.org][languageServers.lua]] file. +#+begin_src lua :tangle yes +require('languageServers') +#+end_src + +Set up auto-complete in the [[./lua/autocomplete.org][autocomplete.lua]] file. +#+begin_src lua :tangle yes +require('autocomplete') +#+end_src |