feat: add lazygit config
This commit is contained in:
parent
77576e3bdf
commit
44ff742f4c
7
configs/lazygit/config.yml
Normal file
7
configs/lazygit/config.yml
Normal file
@ -0,0 +1,7 @@
|
||||
customCommands:
|
||||
- key: "C"
|
||||
command: "git cz"
|
||||
description: "commit with commitizen"
|
||||
context: "files"
|
||||
loadingText: "opening commitizen commit tool"
|
||||
subprocess: true
|
11
configs/lazygit/state.yml
Normal file
11
configs/lazygit/state.yml
Normal file
@ -0,0 +1,11 @@
|
||||
lastupdatecheck: 0
|
||||
recentrepos:
|
||||
- /home/max/.dotfiles
|
||||
- /home/max/Projects/silvester
|
||||
- /home/max/Projects/ruumio/main
|
||||
- /home/max/Projects/ruumio/feat-3d-poi
|
||||
- /home/max/Projects/ruumio
|
||||
- /home/max/Projects/gainz
|
||||
startuppopupversion: 5
|
||||
customcommandshistory: []
|
||||
hidecommandlog: false
|
@ -13,19 +13,6 @@ local source_mapping = {
|
||||
path = "[Path]",
|
||||
}
|
||||
|
||||
-- tabnine:setup({
|
||||
-- max_lines = 1000,
|
||||
-- max_num_results = 20,
|
||||
-- sort = true,
|
||||
-- run_on_every_keystroke = true,
|
||||
-- snippet_placeholder = "..",
|
||||
-- ignored_file_types = { -- default is not to ignore
|
||||
-- -- uncomment to ignore in lua:
|
||||
-- -- lua = true
|
||||
-- },
|
||||
-- show_prediction_strength = false,
|
||||
-- })
|
||||
|
||||
cmp.setup({
|
||||
window = {
|
||||
documentation = cmp.config.window.bordered(),
|
||||
|
@ -12,24 +12,26 @@
|
||||
-- filetype = "vert",
|
||||
-- filetypes = {"vert", "frag"}
|
||||
-- }
|
||||
--
|
||||
|
||||
require "nvim-treesitter.configs".setup {
|
||||
indent = {
|
||||
enable = true
|
||||
},
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"yaml",
|
||||
"http",
|
||||
"svelte",
|
||||
"css",
|
||||
"svelte",
|
||||
"typescript",
|
||||
"javascript",
|
||||
"go",
|
||||
"lua",
|
||||
"yaml",
|
||||
"prisma"
|
||||
},
|
||||
highlight = {enable = true}
|
||||
indent = {
|
||||
enable = true
|
||||
},
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"yaml",
|
||||
"http",
|
||||
"svelte",
|
||||
"css",
|
||||
"svelte",
|
||||
"typescript",
|
||||
"javascript",
|
||||
"tsx",
|
||||
"go",
|
||||
"lua",
|
||||
"yaml",
|
||||
"prisma"
|
||||
},
|
||||
highlight = { enable = true, disable = { "tsx" } }
|
||||
}
|
||||
|
@ -5,6 +5,16 @@ local g = vim.g
|
||||
local saga = require("lspsaga")
|
||||
local truezen = require("true-zen")
|
||||
truezen.setup({
|
||||
ataraxis = {
|
||||
minimum_writing_area = { -- minimum size of main window
|
||||
width = 250,
|
||||
height = 100,
|
||||
},
|
||||
padding = {
|
||||
left = 10,
|
||||
right = 10,
|
||||
}
|
||||
},
|
||||
integrations = {
|
||||
tmux = true, -- hide tmux status bar in (minimalist, ataraxis)
|
||||
lualine = true, -- hide nvim-lualine (ataraxis)
|
||||
@ -112,7 +122,7 @@ map("n", "<Up>", ":echo 'No Up for you'<CR><dw>", options)
|
||||
map("n", "<Down>", ":echo 'No Down for you'<CR><dw>", options)
|
||||
|
||||
-- Run Requests
|
||||
map("n", "<Leader>r", "<cmd>lua require('rest-nvim').run()<CR>", options)
|
||||
map("n", "<Leader>r", ":SnipRun<CR>", options)
|
||||
|
||||
-- Close on q
|
||||
map("n", "<Leader>q", "<Esc>:q<CR>", options)
|
||||
|
@ -99,6 +99,7 @@ return packer.startup(function(use)
|
||||
-- Dap Debugger -- Have not yet been able to set this up
|
||||
-- use({ "mfussenegger/nvim-dap" })
|
||||
-- use({ "rcarriga/nvim-dap-ui" })
|
||||
use { 'michaelb/sniprun', run = 'bash ./install.sh' }
|
||||
|
||||
-- FIle Navigation
|
||||
use({ "ThePrimeagen/harpoon" })
|
||||
|
Loading…
Reference in New Issue
Block a user