diff options
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>", {}) |
