mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
10 lines
248 B
Lua
10 lines
248 B
Lua
local status, sidebar = pcall(require, 'sidebar-nvim')
|
|
if (not status) then return end
|
|
|
|
sidebar.setup()
|
|
|
|
--- Mappings
|
|
local opts = { noremap = true, silent = true }
|
|
|
|
vim.api.nvim_set_keymap('n', '<leader>ts', [[<Cmd>:SidebarNvimToggle<CR>]], opts)
|