aboutsummaryrefslogtreecommitdiff
path: root/common/.config/nvim/lua/behaviour.lua.org
diff options
context:
space:
mode:
Diffstat (limited to 'common/.config/nvim/lua/behaviour.lua.org')
-rw-r--r--common/.config/nvim/lua/behaviour.lua.org19
1 files changed, 0 insertions, 19 deletions
diff --git a/common/.config/nvim/lua/behaviour.lua.org b/common/.config/nvim/lua/behaviour.lua.org
deleted file mode 100644
index 871b65e..0000000
--- a/common/.config/nvim/lua/behaviour.lua.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