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/lua/behaviour.org |
initial commit
Diffstat (limited to 'config/nvim/lua/behaviour.org')
-rw-r--r-- | config/nvim/lua/behaviour.org | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/nvim/lua/behaviour.org b/config/nvim/lua/behaviour.org new file mode 100644 index 0000000..d843d7b --- /dev/null +++ b/config/nvim/lua/behaviour.org @@ -0,0 +1,19 @@ +#+title: Neovim Behaviour Settings + +Use tabs with width 4. +#+begin_src lua :tangle yes + vim.opt.tabstop = 4 + vim.opt.expandtab = true + vim.opt.shiftwidth = 4 + vim.opt.autoindent = true +#+end_src + +Better command line completion. +#+begin_src lua :tangle yes + vim.opt.wildmode = 'longest,list' +#+end_src + +Better management of file types. +#+begin_src lua :tangle yes + vim.cmd('filetype plugin indent on') +#+end_src |