fix notification location
This commit is contained in:
@@ -47,17 +47,6 @@ vim.api.nvim_create_autocmd(
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if name == "nvim-treesitter" then
|
||||
vim.defer_fn(
|
||||
function()
|
||||
require("darcula.setup.500_treesitter")
|
||||
vim.cmd("TSUpdate")
|
||||
end,
|
||||
5000
|
||||
)
|
||||
return
|
||||
end
|
||||
end
|
||||
}
|
||||
)
|
||||
|
||||
@@ -20,9 +20,9 @@
|
||||
require("mini.notify").setup {
|
||||
window = {
|
||||
config = {
|
||||
row = vim.o.lines - 4,
|
||||
col = vim.o.columns - 4,
|
||||
anchor = "SE"
|
||||
row = 1,
|
||||
col = vim.o.columns - 1,
|
||||
anchor = "NE"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,3 +22,10 @@ require("nvim-treesitter").setup {
|
||||
}
|
||||
|
||||
require("nvim-treesitter").install(NV_DARCULA_TREESITTER_LIST)
|
||||
|
||||
vim.defer_fn(
|
||||
function()
|
||||
vim.cmd("TSUpdate")
|
||||
end,
|
||||
1000
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user