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