diff options
| author | Charles Cabergs <charles.cabergs@colruytgroup.com> | 2022-06-10 11:29:44 +0200 |
|---|---|---|
| committer | Charles Cabergs <charles.cabergs@colruytgroup.com> | 2022-06-10 11:29:44 +0200 |
| commit | 0f6ae6983de4c76f282add379f356ad68ff6d729 (patch) | |
| tree | de76143c1bd9aecbd8b700a5bdcb8bbc3f31b98c /config/nvim/lua/plugins.lua | |
| parent | 06953e8546259be3058c53cc1f1930a0b4a64585 (diff) | |
| parent | 796504bdf965fec883e620788d54bf90807361d5 (diff) | |
| download | dotfiles-0f6ae6983de4c76f282add379f356ad68ff6d729.tar.gz dotfiles-0f6ae6983de4c76f282add379f356ad68ff6d729.tar.bz2 dotfiles-0f6ae6983de4c76f282add379f356ad68ff6d729.zip | |
Merge branch 'master' of https://github.com/cacharle/dotfiles
Diffstat (limited to 'config/nvim/lua/plugins.lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index ebaedec..97dc63b 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -318,9 +318,8 @@ return require("packer").startup(function() -- theme = "gruvbox", theme = "nord", icons_enabled = true, - section_separators = "", - component_separators = "", - -- globalstatus = true, + section_separators = '', + component_separators = '', } } end @@ -376,7 +375,7 @@ return require("packer").startup(function() }, } local map = vim.api.nvim_set_keymap - map("n", "<C-p>", "<cmd>Telescope git_files<cr>", {}) + map('n', '<C-p>', '<CMD>lua require"telescope-config".project_files()<CR>', { noremap = true, silent = true }) map("n", "<leader>H", "<cmd>Telescope help_tags<cr>", {}) map("n", "<leader>;", "<cmd>Telescope commands<cr>", {}) map("n", "<leader>p", "<cmd>Telescope tags<cr>", {}) |
