diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-04-02 16:22:11 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-04-02 16:22:11 -0400 |
commit | c22ea8c5ec4258303ae1a14127c87be96efd8c19 (patch) | |
tree | 1411ac7e8fdfe269662b7cfdca3d953e18c94b14 | |
parent | 0c1360f87e64b20a5eb075c872b1a4cd0fca563f (diff) |
fuck tabs
-rw-r--r-- | .editorconfig | 3 | ||||
-rw-r--r-- | README.md | 48 |
2 files changed, 27 insertions, 24 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9a6cc75 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,3 @@ +[*.lua] +indent_style = space +indent_size = 2 @@ -23,33 +23,33 @@ Your neovim tabs, dropshipped into your projects "ChausseBenjamin/dropship.nvim", dependencies = "nvim-telescope/telescope.nvim", opts = { - drop_locations = { - { "Projects", "~/Workspace" }, - { "Neovim Config", "~/.config/nvim" }, - { "University", "~/Documents/school/university/current_semester" }, - }, + drop_locations = { + { "Projects", "~/Workspace" }, + { "Neovim Config", "~/.config/nvim" }, + { "University", "~/Documents/school/university/current_semester" }, + }, }, keys = { - { - "<leader>dt", - function() - require("dropship").dropship_newtab() - end, - mode = "n", - desc = "[D]ropship in a new [T]ab", - }, - { - "<leader>dh", - function() - require("dropship").dropship_current() - end, - mode = "n", - desc = "[D]ropship right [H]ere", - }, + { + "<leader>dt", + function() + require("dropship").dropship_newtab() + end, + mode = "n", + desc = "[D]ropship in a new [T]ab", + }, + { + "<leader>dh", + function() + require("dropship").dropship_current() + end, + mode = "n", + desc = "[D]ropship right [H]ere", + }, }, cmd = { - "Dropship", - "DropshipNewTab", + "Dropship", + "DropshipNewTab", } } ``` @@ -66,7 +66,7 @@ solution makes sense for me to keep all my shortcuts in sync. "ChausseBenjamin/dropship.nvim", dependencies = "nvim-telescope/telescope.nvim", opts = { - drop_locations = "~/.cache/droplist.lua" + drop_locations = "~/.cache/droplist.lua" }, -- Same as above for the rest... } |