diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2023-12-04 19:49:07 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2023-12-04 19:49:07 +0300 |
commit | ff61e763b12badbf73f4e78b462c626ab206be1c (patch) | |
tree | b1f0c91ac8d4396a4e7f3081ea249afd2727a44d /.config/nvim/lua/user/plugins.lua | |
parent | 0397b0626dae6ae863b6d68b4a7970687eb39509 (diff) |
Changed some of lua & i3 seggings
* window navigation added to nvim
* i3 startup changes
* added sakura config
* added zerotierone scripts
co-authored-by: who-is-this-guy sotov2071@gmail.com
Diffstat (limited to '.config/nvim/lua/user/plugins.lua')
-rw-r--r-- | .config/nvim/lua/user/plugins.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/nvim/lua/user/plugins.lua b/.config/nvim/lua/user/plugins.lua index 2344087..ee7dea7 100644 --- a/.config/nvim/lua/user/plugins.lua +++ b/.config/nvim/lua/user/plugins.lua @@ -4,9 +4,14 @@ -- plugins to be installed plugins = { "folke/lazy.nvim", -- plugin manager + "nvim-lua/popup.nvim", -- some functions for other plugins + "nvim-lua/plenary.nvim", -- some functions for other plugins "folke/which-key.nvim", -- pretty self-descriptive name "rafi/awesome-vim-colorschemes", -- same here - "tpope/vim-commentary" -- gc & gcc for commenting + "tpope/vim-commentary", -- gc & gcc for commenting + "tpope/vim-surround", -- replace quotes e.t.c + "nvim-treesitter/nvim-treesitter", -- folding code, advanced syntax highlighting & sitting on a tree + "preservim/nerdtree", -- file explorer } -- options for lazy @@ -32,4 +37,5 @@ vim.opt.rtp:prepend(lazypath) -- initialization lazy = require("lazy") lazy.setup(plugins, opts) +-- lazy.load('nerdtree') |