Compare commits

...

4 commits

8 changed files with 16 additions and 9 deletions

View file

@ -1,4 +1,4 @@
import = ["~/.config/alacritty/themes/gruvbox_light.toml"]
import = ["~/.config/alacritty/themes/gruvbox_dark.toml"]
[env]
TERM = "xterm-256color"
@ -8,7 +8,7 @@ size = 14.0
[font.normal]
family = "FiraCode Nerd Font Mono"
style = "Retina"
style = "Light"
[window]
opacity = 1

View file

@ -17,6 +17,7 @@
"gruvbox-material": { "branch": "master", "commit": "b17fe51688b76e2ccf118e5f76f3978b9a8c503e" },
"impatient.nvim": { "branch": "main", "commit": "47302af74be7b79f002773011f0d8e85679a7618" },
"instant.nvim": { "branch": "master", "commit": "294b6d08143b3db8f9db7f606829270149e1a786" },
"jq.nvim": { "branch": "master", "commit": "b9879798f25a9318894456dc7464af0904c08958" },
"lazy.nvim": { "branch": "main", "commit": "aedcd79811d491b60d0a6577a9c1701063c2a609" },
"lspkind.nvim": { "branch": "master", "commit": "1735dd5a5054c1fb7feaf8e8658dbab925f4f0cf" },
"ltex-extra.nvim": { "branch": "master", "commit": "42dd3572cb09b52a137e91e515f2dff5eb631b1e" },

View file

@ -3,6 +3,7 @@ require("conform").setup({
python = { "black" },
javascript = { "prettierd" },
markdown = { "mdformat" },
json = {"jq"}
},
format_on_save = {
lsp_fallback = true,

View file

@ -1,7 +1,7 @@
require('copilot').setup({
suggestion = {
enabled = true,
auto_trigger = false,
auto_trigger = true,
debounce = 75,
keymap = {
accept = "<C-h>",

View file

@ -265,4 +265,7 @@ lazy.setup({
--Vim be good
'ThePrimeagen/vim-be-good',
--JQ
'jrop/jq.nvim'
})

View file

@ -25,12 +25,12 @@ bind-key 'o' if-shell "$is_vim" 'send-keys F8' 'select-pane -R'
# Tmus sessionizer
unbind s
bind-key 's' display-popup -E "~/.local/bin/tms"
bind-key 's' display-popup -E -w 90% -h 90% "~/.local/bin/tms"
#Lazygit
unbind g
bind-key 'g' display-popup -d '#{pane_current_path}' -E "lazygit"
bind-key 'g' display-popup -d '#{pane_current_path}' -E -w 90% -h 90% "lazygit"
# Edit vim config
unbind e
bind-key 'e' display-popup -d '/Users/afonso/.config/nvim/' -E "nvim ."
bind-key 'e' display-popup -d '/Users/afonso/.config/nvim/' -E -w 90% -h 90% "nvim ."

View file

@ -1,7 +1,7 @@
[user]
email = afonso@francof.net
name = afonso
signingkey = ~/.ssh/id_ed25519_sk.pub
signingkey = ~/.ssh/simple_sk
[includeIf "hasconfig:remote.*.url:https://github.com/**"]
path = ~/.gitconfig-gh
[includeIf "hasconfig:remote.*.url:ssh://git@github.com/**"]

View file

@ -1,20 +1,22 @@
Host gon
Host git.olympuslab.net gon
ControlMaster auto
HostName git.olympuslab.net
User git
Port 522
ControlPath ~/.ssh/session.%r@%h:%p
ControlPersist 5m
IdentityFile ~/.ssh/simple_sk
IdentityFile ~/.ssh/id_ed25519_sk
IdentityFile ~/.ssh/id_ed25519_sk_secondary
Host gh
Host github.com gh
ControlMaster auto
HostName github.com
User git
Port 22
ControlPath ~/.ssh/session.%r@%h:%p
ControlPersist 10m
IdentityFile ~/.ssh/simple_sk
IdentityFile ~/.ssh/id_ed25519_sk
IdentityFile ~/.ssh/id_ed25519_sk_secondary