Mainly alignment

This commit is contained in:
2024-09-10 09:08:31 +02:00
parent d76cef6aa3
commit 62a5f9c8be
7 changed files with 80 additions and 80 deletions

View File

@@ -4,7 +4,8 @@ function ColorMyPencils(color)
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
vim.keymap.set("n", "<leader>c", function() ColorMyPencils() end)
ColorMyPencils()

View File

@@ -3,7 +3,7 @@ local ui = require("harpoon.ui")
vim.keymap.set("n", "<leader>a", mark.add_file)
vim.keymap.set("n", "<C-e>", ui.toggle_quick_menu)
vim.keymap.set("n", "<C-h>", function() ui.nav_file(1) end)
vim.keymap.set("n", "<C-t>", function() ui.nav_file(2) end)
vim.keymap.set("n", "<C-n>", function() ui.nav_file(3) end)
vim.keymap.set("n", "<C-s>", function() ui.nav_file(4) end)
vim.keymap.set("n", "<leader>1", function() ui.nav_file(1) end)
vim.keymap.set("n", "<leader>2", function() ui.nav_file(2) end)
vim.keymap.set("n", "<leader>3", function() ui.nav_file(3) end)
vim.keymap.set("n", "<leader>4", function() ui.nav_file(4) end)

View File

@@ -1,6 +1,7 @@
require 'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all" (the five listed parsers should always be installed)
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "rust", "cpp", "cmake", "latex", "python" },
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "rust", "cpp", "cmake", "latex", "python", "groovy",
"ocaml" },
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,

View File

@@ -49,5 +49,4 @@ return require('packer').startup(function(use)
{ 'L3MON4D3/LuaSnip' }, -- Required
}
}
end)

View File

@@ -33,4 +33,3 @@ vim.opt.updatetime = 50
vim.opt.colorcolumn = "120"
vim.g.mapleader = " "