aboutsummaryrefslogtreecommitdiff
path: root/gentoo/.config/nvim/lua/behaviour.org
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-09 22:11:23 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-09 22:11:23 -0500
commite6e8ebe10aa40e5a3be2b94cdf3b324f3d3e52e0 (patch)
treeaca3b279520b76d918ce603d47981f1d23dbd1af /gentoo/.config/nvim/lua/behaviour.org
parent40f02bc8088ca93224bf65f083c4ab3b17eaf435 (diff)
split-dotfiles
Diffstat (limited to 'gentoo/.config/nvim/lua/behaviour.org')
-rw-r--r--gentoo/.config/nvim/lua/behaviour.org19
1 files changed, 0 insertions, 19 deletions
diff --git a/gentoo/.config/nvim/lua/behaviour.org b/gentoo/.config/nvim/lua/behaviour.org
deleted file mode 100644
index 871b65e..0000000
--- a/gentoo/.config/nvim/lua/behaviour.org
+++ /dev/null
@@ -1,19 +0,0 @@
-#+title: Neovim Behaviour Settings
-
-Use tabs with width 4.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp 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 ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.opt.wildmode = 'longest,list'
-#+end_src
-
-Better management of file types.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.cmd('filetype plugin indent on')
-#+end_src