- add code action previews - change indent blankline style - more luasnip snippets - change default mason stuff - customize neorg more - change notify style - change startpage completely - add line info to statusline - change telescope style - change how todo comments look - make indentation work via treesitter
18 lines
459 B
Lua
18 lines
459 B
Lua
local status_ok, actions = pcall(require, "actions-preview")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
actions.setup {
|
|
backend = { "telescope" },
|
|
telescope = require("telescope.themes").get_dropdown {
|
|
borderchars = {
|
|
prompt = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
|
|
results = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
|
|
preview = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
|
|
},
|
|
layout_strategy = 'cursor',
|
|
winblend = 10,
|
|
}
|
|
}
|