diff --git a/.gitignore b/.gitignore index 005b535b..a2bb97d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +lua/private tags test.sh .luarc.json diff --git a/init.lua b/init.lua index e28003b6..f33c2c64 100644 --- a/init.lua +++ b/init.lua @@ -196,20 +196,20 @@ vim.opt.shiftwidth = 4 vim.opt.softtabstop = 4 vim.opt.expandtab = true -- -vim.keymap.set("n", "v", "") +vim.keymap.set('n', 'v', '') -- nach komma einen zeilenumruch einfuegen vim.keymap.set('n', 'ii', 'f,a') vim.keymap.set('n', 'o', 'o') vim.keymap.set('n', 'O', 'O') -vim.keymap.set("n", "", "zz") -vim.keymap.set("n", "", "zz") +vim.keymap.set('n', '', 'zz') +vim.keymap.set('n', '', 'zz') -- visual block -vim.keymap.set("n", "v", "") +vim.keymap.set('n', 'v', '') -- -vim.keymap.set("n", "bn", ":bNext") +vim.keymap.set('n', 'bn', ':bNext') -- besten keymaps aller zeiten -vim.keymap.set("v", "J", ":m '>+1gv=gv") -vim.keymap.set("v", "K", ":m '<-2gv=gv") +vim.keymap.set('v', 'J', ":m '>+1gv=gv") +vim.keymap.set('v', 'K', ":m '<-2gv=gv") -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands` @@ -857,8 +857,8 @@ require('lazy').setup({ -- -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins` - { import = 'custom.plugins' }, - { import = 'custom.functions' }, + { import = 'private.plugins' }, + { import = 'private.functions' }, { import = 'basic.plugins' }, }, { ui = { diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua deleted file mode 100644 index be0eb9d8..00000000 --- a/lua/custom/plugins/init.lua +++ /dev/null @@ -1,5 +0,0 @@ --- You can add your own plugins here or in other files in this directory! --- I promise not to create any merge conflicts in this directory :) --- --- See the kickstart.nvim README for more information -return {}