aboutsummaryrefslogtreecommitdiff
path: root/configs/nvim/config-root/lua/crupest/nvim/plugins/others.lua
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2024-09-07 03:09:26 +0800
committercrupest <crupest@outlook.com>2024-09-07 03:09:26 +0800
commit4b64e3d37ece2d7251347b3df8551e98363f845f (patch)
tree003c295cfd5b2615e566a07db76478aad427b906 /configs/nvim/config-root/lua/crupest/nvim/plugins/others.lua
parentfaeef2cd919939ad9a3a276f2c603d7be9acb9ba (diff)
downloadcrupest-4b64e3d37ece2d7251347b3df8551e98363f845f.tar.gz
crupest-4b64e3d37ece2d7251347b3df8551e98363f845f.tar.bz2
crupest-4b64e3d37ece2d7251347b3df8551e98363f845f.zip
config(nvim): create new file structure.
Diffstat (limited to 'configs/nvim/config-root/lua/crupest/nvim/plugins/others.lua')
-rw-r--r--configs/nvim/config-root/lua/crupest/nvim/plugins/others.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/configs/nvim/config-root/lua/crupest/nvim/plugins/others.lua b/configs/nvim/config-root/lua/crupest/nvim/plugins/others.lua
new file mode 100644
index 0000000..2d728ae
--- /dev/null
+++ b/configs/nvim/config-root/lua/crupest/nvim/plugins/others.lua
@@ -0,0 +1,20 @@
+local function setup()
+ require("neo-tree").setup {
+ filesystem = {
+ filtered_items = {
+ hide_dotfiles = false,
+ hide_gitignored = false,
+ hide_hidden = false, -- only works on Windows for hidden files/directories
+ },
+ use_libuv_file_watcher = true
+ }
+ }
+
+ require('lualine').setup {}
+
+ require("nvim-autopairs").setup {}
+end
+
+return {
+ setup = setup
+}