diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-01 18:46:47 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-01 18:46:47 -0600 |
commit | 3a2df5dcfb3787b88548d1a7ee6f4fde71b17ccd (patch) | |
tree | 694feffc7bf497e3c2fc7f45545431deeed5a553 /lua | |
parent | ce5d59603fb55f33e2b65f245fe939ef1638e34e (diff) |
Tried out ouroboros
Diffstat (limited to 'lua')
-rw-r--r-- | lua/config_ouroboros.lua | 2 | ||||
-rw-r--r-- | lua/plugin_management.lua | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lua/config_ouroboros.lua b/lua/config_ouroboros.lua new file mode 100644 index 0000000..5c6052e --- /dev/null +++ b/lua/config_ouroboros.lua @@ -0,0 +1,2 @@ +vim.keymap.set({"n"}, "<A-i>", ":Ouroboros<CR>") +vim.keymap.set({"n"}, "<A-s>", ":vsplit | Ouroboros<CR>") diff --git a/lua/plugin_management.lua b/lua/plugin_management.lua index 326f35c..e68f1e1 100644 --- a/lua/plugin_management.lua +++ b/lua/plugin_management.lua @@ -50,6 +50,10 @@ Plug "nvim-telescope/telescope.nvim" Plug "mfussenegger/nvim-dap" Plug "Civitasv/cmake-tools.nvim" +-- Cool header file shit. +Plug "nvim-lua/plenary.nvim" +Plug "jakemason/ouroboros.nvim" + -- Session Plug "rmagatti/auto-session" |