Compare commits

..

No commits in common. '470525c4e5b4c34eeb45aa039142be7a9ec13666' and '1580a202c1f0fcc8fc6fb598ba84e4ea0c164c08' have entirely different histories.

@ -87,10 +87,6 @@ vim.keymap.set("n", "<C-h>", "<C-w><C-h>", { desc = "Move focus to the left wind
vim.keymap.set("n", "<C-l>", "<C-w><C-l>", { desc = "Move focus to the right window" })
vim.keymap.set("n", "<C-j>", "<C-w><C-j>", { desc = "Move focus to the lower window" })
vim.keymap.set("n", "<C-k>", "<C-w><C-k>", { desc = "Move focus to the upper window" })
-- Jump to the definition of the word under your cursor.
-- This is where a variable was first declared, or where a function is defined, etc.
-- To jump back, press <C-T>.
vim.keymap.set("n", "gd", vim.lsp.buf.definition, { desc = "" })
-- [[ Basic Autocommands ]]
-- Go back to last edited line when reopening file
vim.api.nvim_create_autocmd("BufRead", {
@ -265,13 +261,13 @@ require("lazy").setup({
"ixru/nvim-markdown",
"KeitaNakamura/tex-conceal.vim",
"christoomey/vim-tmux-navigator",
"skywind3000/asyncrun.vim",
-- NOTE: Plugins can specify dependencies.
--
-- The dependencies are proper plugin specifications as well - anything
-- you do for a plugin at the top level, you can do for a dependency.
--
-- Use the `dependencies` key to specify the dependencies of a particular plugin
---- NOTE: Plugins can specify dependencies.
----
---- The dependencies are proper plugin specifications as well - anything
---- you do for a plugin at the top level, you can do for a dependency.
----
---- Use the `dependencies` key to specify the dependencies of a particular plugin
{ -- Fuzzy Finder (files, lsp, etc)
"nvim-telescope/telescope.nvim",
event = "VeryLazy",
@ -352,6 +348,11 @@ require("lazy").setup({
vim.keymap.set("n", keys, func, { buffer = event.buf, desc = "LSP: " .. desc })
end
-- Jump to the definition of the word under your cursor.
-- This is where a variable was first declared, or where a function is defined, etc.
-- To jump back, press <C-T>.
map("gd", require("telescope.builtin").lsp_definitions, "[G]oto [D]efinition")
-- Find references for the word under your cursor.
map("gr", require("telescope.builtin").lsp_references, "[G]oto [R]eferences")
@ -449,7 +450,6 @@ require("lazy").setup({
},
},
pyright = {},
fortls = {},
bashls = { dependencies = "shellcheck" },
rust_analyzer = {
settings = {

Loading…
Cancel
Save