Initial commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{
|
||||
programs.nixvim.plugins.telescope = {
|
||||
enable = true;
|
||||
|
||||
keymaps = {
|
||||
"<leader>ff" = "find_files";
|
||||
"<leader>b" = "buffers";
|
||||
"<leader>fh" = "help_tags";
|
||||
"<leader>gf" = "git_files";
|
||||
"<leader>of" = "oldfiles";
|
||||
# "<leader>fg" = "live_grep";
|
||||
# "<leader>fd" = "diagnostics";
|
||||
};
|
||||
|
||||
keymapsSilent = true;
|
||||
|
||||
settings.defaults = {
|
||||
file_ignore_patterns = [
|
||||
"^.git/"
|
||||
"^.mypy_cache/"
|
||||
"^__pycache__/"
|
||||
"^output/"
|
||||
"^data/"
|
||||
"%.ipynb"
|
||||
];
|
||||
set_env.COLORTERM = "truecolor";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user