diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 22:34:10 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 22:34:10 -0500 |
commit | 3832e2c085e5137f78cdf5f0c1e9cf273ffbc338 (patch) | |
tree | a2bd6bd1119aacbaa23ede55ad3ff1c46a76ea57 /config/nvim/lua/behaviour.org | |
parent | 05a87bb0eb20345694a09c9e5e5930028c0c0339 (diff) |
complete my configuration migration
Diffstat (limited to 'config/nvim/lua/behaviour.org')
-rw-r--r-- | config/nvim/lua/behaviour.org | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/nvim/lua/behaviour.org b/config/nvim/lua/behaviour.org index d843d7b..871b65e 100644 --- a/config/nvim/lua/behaviour.org +++ b/config/nvim/lua/behaviour.org @@ -1,7 +1,7 @@ #+title: Neovim Behaviour Settings Use tabs with width 4. -#+begin_src lua :tangle yes +#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes vim.opt.tabstop = 4 vim.opt.expandtab = true vim.opt.shiftwidth = 4 @@ -9,11 +9,11 @@ Use tabs with width 4. #+end_src Better command line completion. -#+begin_src lua :tangle yes +#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes vim.opt.wildmode = 'longest,list' #+end_src Better management of file types. -#+begin_src lua :tangle yes +#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes vim.cmd('filetype plugin indent on') #+end_src |