diff --git a/dotfiles/neovim/lazy-lock.json b/dotfiles/neovim/lazy-lock.json index 4e715d5..a90b8df 100644 --- a/dotfiles/neovim/lazy-lock.json +++ b/dotfiles/neovim/lazy-lock.json @@ -2,6 +2,7 @@ "LuaSnip": { "branch": "master", "commit": "9bff06b570df29434a88f9c6a9cea3b21ca17208" }, "abbreinder.nvim": { "branch": "main", "commit": "5b2b5ff08a9ada42238d733aeebc6d3d96314d77" }, "abbremand.nvim": { "branch": "main", "commit": "d633341f632b0b2666dfc6dfe6b9842ba1610a1d" }, + "catppuccin": { "branch": "main", "commit": "c3697149f825ff73665491223b5df1efae28f687" }, "clipboard-image.nvim": { "branch": "main", "commit": "d1550dc26729b7954f95269952e90471b838fa25" }, "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, "cmp-cmdline": { "branch": "main", "commit": "23c51b2a3c00f6abc4e922dbd7c3b9aca6992063" }, @@ -25,6 +26,7 @@ "kotlin-vim": { "branch": "master", "commit": "53fe045906df8eeb07cb77b078fc93acda6c90b8" }, "lazy.nvim": { "branch": "main", "commit": "c734d941b47312baafe3e0429a5fecd25da95f5f" }, "leap": { "branch": "main", "commit": "f565a9c4d92245d8b619235bebeaa73cc38aa40e" }, + "live-command.nvim": { "branch": "main", "commit": "ce4b104ce702c7bb9fdff863059af6d47107ca61" }, "lspkind.nvim": { "branch": "master", "commit": "c68b3a003483cf382428a43035079f78474cd11e" }, "lualine.nvim": { "branch": "master", "commit": "0050b308552e45f7128f399886c86afefc3eb988" }, "magma-nvim": { "branch": "main", "commit": "395b48e2e202d82fca76c15d2dcd8785c125d686" }, diff --git a/dotfiles/neovim/lua/my/plugins/firenvim.lua b/dotfiles/neovim/lua/my/plugins/firenvim.lua index 6272cfa..e289301 100644 --- a/dotfiles/neovim/lua/my/plugins/firenvim.lua +++ b/dotfiles/neovim/lua/my/plugins/firenvim.lua @@ -44,6 +44,7 @@ function M.config() blacklist("web\\.whatsapp\\.com") blacklist("twitter\\.com") blacklist("desmos\\.com\\/calculator") + blacklist("geogebra\\.org\\/calculator") -- }}} -- {{{ Comitting our config changes vim.g.firenvim_config = { localSettings = M.localSettings } diff --git a/dotfiles/neovim/lua/my/plugins/init.lua b/dotfiles/neovim/lua/my/plugins/init.lua index f535d81..29ce06f 100644 --- a/dotfiles/neovim/lua/my/plugins/init.lua +++ b/dotfiles/neovim/lua/my/plugins/init.lua @@ -200,5 +200,5 @@ return { require("presence"):setup() end, lazy = false, - }, + } } diff --git a/flake.lock b/flake.lock index e12ecb1..9c69cf0 100644 --- a/flake.lock +++ b/flake.lock @@ -272,11 +272,11 @@ }, "locked": { "dir": "contrib", - "lastModified": 1675807748, - "narHash": "sha256-BVxrDJxUBh6+ChLNIbXUZIJp5kCdWIoR9pyrOA7DlPo=", + "lastModified": 1679013660, + "narHash": "sha256-/g02wJF9c3BHcL5LyjeOvTLbms0Uem58BlnbYXdC3E0=", "owner": "neovim", "repo": "neovim", - "rev": "81c5483dcb6a5504911b54227923da5028023a7c", + "rev": "accdb0104eb607a66a9908f24fbd13552d058765", "type": "github" }, "original": { @@ -295,11 +295,11 @@ ] }, "locked": { - "lastModified": 1675844119, - "narHash": "sha256-ozrO98GInLxs7b4/IX5zGwt7ZK9K73cVF0bJ5Rrmq7M=", + "lastModified": 1679040884, + "narHash": "sha256-f9Cn5FlP9L7Fm/DzdB9CmssQovo/SnF980b4HqMoaAc=", "owner": "nix-community", "repo": "neovim-nightly-overlay", - "rev": "bc8854947b7e3d8ecd693941d6dae31c814c2dbe", + "rev": "403d5f861bd4357b4bc4f7d3be8b42292e6bb4f4", "type": "github" }, "original": { diff --git a/home/adrielus/features/cli/tmux/tmux.conf b/home/adrielus/features/cli/tmux/tmux.conf index a55b2bf..80fc94a 100644 --- a/home/adrielus/features/cli/tmux/tmux.conf +++ b/home/adrielus/features/cli/tmux/tmux.conf @@ -60,3 +60,7 @@ bind-key -T copy-mode-vi 'C-k' select-pane -U bind-key -T copy-mode-vi 'C-l' select-pane -R bind-key -T copy-mode-vi 'C-\' select-pane -l # }}} +# {{{ Get titles to work +set-option -g set-titles on +set-option -g set-titles-string "#T" +# }}}