jiriks74
1441e90711
Added: - [bufferline.nvim](https://github.com/akinsho/bufferline.nvim) - Overseer status to lualine Removed: - `{` and `}` keymaps for aerial (I like the default behavior more)
19 lines
506 B
Lua
19 lines
506 B
Lua
if vim.g.did_load_plugins_plugin then
|
|
return
|
|
end
|
|
vim.g.did_load_plugins_plugin = true
|
|
|
|
-- many plugins annoyingly require a call to a 'setup' function to be loaded,
|
|
-- even with default configs
|
|
|
|
require("nvim-autopairs").setup {}
|
|
require("dapui").setup()
|
|
-- require("copilot_cmp").setup()
|
|
require('nvim-surround').setup()
|
|
require('which-key').setup()
|
|
require('Comment').setup()
|
|
require("better_escape").setup()
|
|
require("todo-comments").setup()
|
|
require("bufferline").setup{}
|
|
require("toggleterm").setup()
|