save
This commit is contained in:
@@ -15,9 +15,9 @@
|
||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "c6c686781f9841d855bf1b926e10aa5e19430a38" },
|
||||
"mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" },
|
||||
"mini.ai": { "branch": "main", "commit": "ebb04799794a7f94628153991e6334c3304961b8" },
|
||||
"mini.pick": { "branch": "main", "commit": "eb8fad053935dd6e4861c7b65b0d3f70785d8f42" },
|
||||
"nvim-cmp": { "branch": "main", "commit": "b555203ce4bd7ff6192e759af3362f9d217e8c89" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "8b15a1a597a59f4f5306fad9adfe99454feab743" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "fae21737be2846a04ae06a41d70b7fc8ad4bf9eb" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "63f552a7f59badc6e6b6d22e603150f0d5abebb7" },
|
||||
"oil.nvim": { "branch": "master", "commit": "ba858b662599eab8ef1cba9ab745afded99cb180" },
|
||||
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
vim.g.mapleader = " "
|
||||
|
||||
require("vxclutch.set")
|
||||
require("vxclutch.lazy_init")
|
||||
require("vxclutch.remap")
|
||||
-- https://github.com/vx-clutch/ftl
|
||||
vim.api.nvim_create_autocmd({"BufNewFile", "BufRead"}, {
|
||||
pattern = "*.ftl",
|
||||
callback = function()
|
||||
vim.bo.filetype = "c"
|
||||
end,
|
||||
})
|
||||
|
||||
|
||||
require "vxclutch.set"
|
||||
require "vxclutch.lazy_init"
|
||||
require "vxclutch.remap"
|
||||
|
||||
@@ -11,10 +11,10 @@ return {
|
||||
require("telescope").setup {}
|
||||
|
||||
local builtin = require "telescope.builtin"
|
||||
vim.keymap.set("n", "<leader>sf", builtin.find_files, {})
|
||||
vim.keymap.set("n", "<leader><leader>", builtin.find_files, {})
|
||||
vim.keymap.set("n", "<C-p>", builtin.git_files, {})
|
||||
vim.keymap.set("n", "<leader>vh", builtin.help_tags, {})
|
||||
vim.keymap.set("n", "<leader><leader>", function()
|
||||
vim.keymap.set("n", "<leader>sg", function()
|
||||
builtin.live_grep {
|
||||
grep_open_files = true,
|
||||
prompt_title = "Live Grep in Open Files",
|
||||
|
||||
Reference in New Issue
Block a user