It is a complete redo of the vim/nvim experience. It's neovim with lua everything While this was configured this way with a local computer in mind it should be easy to set up and use on a remote machine. Known Issues: * Fuzzy finder (this is down to me not having understood properly) * Harpoon adding paths (again me) * Need to review the `set.lua` and `remap.lua` for a more uniform approach in nomenclature. This should see more updates. Reviewed-on: #1
9 lines
398 B
Lua
9 lines
398 B
Lua
local builtin = require('telescope.builtin')
|
|
vim.keymap.set('n', '<leader>pf', builtin.find_files, {})
|
|
vim.keymap.set('n', '<C-p>', builtin.git_files, {})
|
|
-- vim.keymap.set('n', '<leader>fb', builtin.buffers, {})
|
|
-- vim.keymap.set('n', '<leader>fh', builtin.help_tags, {})
|
|
vim.keymap.set('n', '<leader>ps', function()
|
|
builtin.grep_string({ search = vim.fn.input("Grep > ") });
|
|
end)
|