Skip to content

Commit

Permalink
tweak neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML committed Aug 17, 2024
1 parent b3e407e commit f2d1c56
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ vim.list_extend(require("viper.lazy.specs"), {
{
"neo-tree.nvim",
cmd = "Neotree",
keys = {"<leader>b"},
keys = { "<leader>b" },
after = function()
require("neo-tree").setup {
close_if_last_window = true,
Expand All @@ -55,7 +55,7 @@ vim.list_extend(require("viper.lazy.specs"), {
follow_current_file = {
enabled = true,
leave_dirs_open = true,
}
},
},
}
vim.keymap.set("n", "<leader>b", "<cmd>Neotree show toggle<cr>", { desc = "Neotree toggle" })
Expand All @@ -78,7 +78,7 @@ vim.list_extend(require("viper.lazy.specs"), {
{
"telescope.nvim",
cmd = "Telescope",
keys = { "<leader><leader>" },
keys = { "<leader><leader>", "<leader>f" },
after = function()
require("telescope").setup {
extensions = {
Expand Down

0 comments on commit f2d1c56

Please sign in to comment.