Merge branch 'main' of https://git.cmtec.se/cm/code_server
This commit is contained in:
commit
4e755bc0b8
@ -20,4 +20,47 @@ return {
|
|||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"nvim-telescope/telescope.nvim",
|
||||||
|
opts = function()
|
||||||
|
local actions = require "telescope.actions"
|
||||||
|
local get_icon = require("astronvim.utils").get_icon
|
||||||
|
return {
|
||||||
|
defaults = {
|
||||||
|
prompt_prefix = string.format("%s ", get_icon "Search"),
|
||||||
|
selection_caret = string.format("%s ", get_icon "Selected"),
|
||||||
|
path_display = { "truncate" },
|
||||||
|
sorting_strategy = "ascending",
|
||||||
|
layout_config = {
|
||||||
|
horizontal = {
|
||||||
|
prompt_position = "bottom",
|
||||||
|
preview_width = 0.55,
|
||||||
|
},
|
||||||
|
vertical = {
|
||||||
|
mirror = false,
|
||||||
|
},
|
||||||
|
width = 0.87,
|
||||||
|
height = 0.80,
|
||||||
|
preview_cutoff = 120,
|
||||||
|
},
|
||||||
|
|
||||||
|
mappings = {
|
||||||
|
i = {
|
||||||
|
["<C-n>"] = actions.cycle_history_next,
|
||||||
|
["<C-p>"] = actions.cycle_history_prev,
|
||||||
|
["<C-j>"] = actions.move_selection_next,
|
||||||
|
["<C-k>"] = actions.move_selection_previous,
|
||||||
|
},
|
||||||
|
n = { ["q"] = actions.close },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
-- the first parameter is the plugin specification
|
||||||
|
-- the second is the table of options as set up in Lazy with the `opts` key
|
||||||
|
config = function(plugin, opts)
|
||||||
|
-- run the core AstroNvim configuration function with the options table
|
||||||
|
require "plugins.configs.telescope"(plugin, opts)
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,6 +22,9 @@ cargo install tree-sitter-cli && \
|
|||||||
# Install ripgrep
|
# Install ripgrep
|
||||||
sudo apt install -y ripgrep && \
|
sudo apt install -y ripgrep && \
|
||||||
|
|
||||||
|
# Install fd
|
||||||
|
sudo apt install -y fd-find && \
|
||||||
|
|
||||||
# Install lazygit
|
# Install lazygit
|
||||||
cd ~ && \
|
cd ~ && \
|
||||||
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*') && \
|
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*') && \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user