update
This commit is contained in:
parent
1f62b28fee
commit
f781146ab1
1 changed files with 5 additions and 0 deletions
5
init.lua
5
init.lua
|
|
@ -88,6 +88,7 @@ require("lazy").setup({
|
|||
},
|
||||
init = function() vim.g.barbar_auto_setup = false end,
|
||||
opts = {
|
||||
no_name_title = "unnamed",
|
||||
icons = {
|
||||
pinned = { button = '', filename = true },
|
||||
}
|
||||
|
|
@ -307,6 +308,10 @@ vim.keymap.set('n', '<leader>fg', '<cmd>lua require("spectre").toggle()<CR>', {
|
|||
desc = "Toggle Spectre"
|
||||
})
|
||||
|
||||
vim.keymap.set('n', '<leader>bf', function()
|
||||
print(vim.api.nvim_buf_get_name(0))
|
||||
end)
|
||||
|
||||
vim.api.nvim_create_autocmd('BufEnter', {
|
||||
pattern = { "*.gd" },
|
||||
callback = function()
|
||||
|
|
|
|||
Loading…
Reference in a new issue