mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 20:04:59 +01:00
Added a keybind to find hidden files, and added a plugin for markdown
This commit is contained in:
parent
2f509692f0
commit
e4d3a8399f
|
@ -17,6 +17,7 @@ map('i', '<C-S>', '<ESC>:w<CR>')
|
|||
-- Telescope
|
||||
local telescope_builtin = require('telescope.builtin')
|
||||
map('n', '<leader>ff', telescope_builtin.find_files, { desc = 'Find Files' })
|
||||
map('n', '<leader>fF', ":Telescope find_files hidden=true<CR>", { desc = 'Find Files (including hidden)' })
|
||||
map('n', '<leader>fg', telescope_builtin.live_grep, { desc = 'Live Grep' })
|
||||
map('n', '<leader>fb', telescope_builtin.buffers, { desc = 'Find Buffers' })
|
||||
map('n', '<leader>fh', telescope_builtin.help_tags, { desc = 'Help Tags' })
|
||||
|
|
|
@ -165,6 +165,15 @@ require("packer").startup(function()
|
|||
}
|
||||
|
||||
|
||||
-- Markdown Stuff
|
||||
use({ 'jakewvincent/mkdnflow.nvim',
|
||||
rocks = 'luautf8', -- Ensures optional luautf8 dependency is installed
|
||||
config = function()
|
||||
require('mkdnflow').setup({})
|
||||
end
|
||||
})
|
||||
|
||||
|
||||
-- Automatically set up configuration after cloning packer.nvim
|
||||
if packer_bootstrap then
|
||||
require("packer").sync()
|
||||
|
|
Loading…
Reference in a new issue