diff --git a/.config/fish/myfunctions/replacements.fish b/.config/fish/myfunctions/replacements.fish index 35fd08f..e8ab78a 100644 --- a/.config/fish/myfunctions/replacements.fish +++ b/.config/fish/myfunctions/replacements.fish @@ -1,5 +1,5 @@ function ls - eza --icons -l $argv + eza --icons -l --sort type $argv end abbr -a find fd abbr -a df duf diff --git a/.config/nvim/lua/plugins/lazy.lua b/.config/nvim/lua/plugins/lazy.lua index d8e8268..330ded1 100644 --- a/.config/nvim/lua/plugins/lazy.lua +++ b/.config/nvim/lua/plugins/lazy.lua @@ -25,15 +25,18 @@ lazy.setup({ --better navigation with 's-letter' { 'ggandor/leap.nvim', + event = "VeryLazy", config = function() require('leap').add_default_mappings() end }, + --Nvim to browser 'subnut/nvim-ghost.nvim', { '2kabhishek/nerdy.nvim', + event = "VeryLazy", dependencies = { 'stevearc/dressing.nvim', 'nvim-telescope/telescope.nvim', @@ -57,6 +60,7 @@ lazy.setup({ { "folke/todo-comments.nvim", + event = "VeryLazy", dependencies = { "nvim-lua/plenary.nvim" }, config = function() require("todo-comments").setup {} @@ -65,6 +69,7 @@ lazy.setup({ { 'folke/zen-mode.nvim', + event = "VeryLazy", config = function() require("zen-mode").setup { vim.keymap.set('n', 'z', ' ZenMode ', { noremap = true, silent = true }) @@ -75,8 +80,6 @@ lazy.setup({ --Change add and remove surroundings from words 'tpope/vim-surround', 'tpope/vim-obsession', - 'tpope/vim-fugitive', - { 'NvChad/nvim-colorizer.lua', @@ -87,6 +90,7 @@ lazy.setup({ { "roobert/tailwindcss-colorizer-cmp.nvim", + event = "VeryLazy", config = function() require("tailwindcss-colorizer-cmp").setup({ color_square_width = 2, @@ -95,6 +99,7 @@ lazy.setup({ }, { 'laytan/tailwind-sorter.nvim', + event = "VeryLazy", dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-lua/plenary.nvim' }, build = 'cd formatter && bun i && bun run build', config = true, @@ -131,6 +136,7 @@ lazy.setup({ 'stevearc/dressing.nvim', { 'krady21/compiler-explorer.nvim', + event = "VeryLazy", config = function() require("compiler-explorer").setup({ url = "https://godbolt.org", @@ -153,7 +159,8 @@ lazy.setup({ }, { - 'luk400/vim-jukit' + 'luk400/vim-jukit', + event = "VeryLazy", }, { @@ -178,6 +185,7 @@ lazy.setup({ { 'stevearc/oil.nvim', + event = "VeryLazy", config = function() require("oil").setup() end @@ -231,10 +239,9 @@ lazy.setup({ end }, - 'simrat39/rust-tools.nvim', - { 'nvimtools/none-ls.nvim', + event = "VeryLazy", config = function() require 'plugins.none-ls' end @@ -242,6 +249,7 @@ lazy.setup({ { 'lervag/vimtex', + event = "VeryLazy", config = function() require 'plugins.vimtex' end @@ -277,7 +285,7 @@ lazy.setup({ --does so much { 'nvim-telescope/telescope.nvim', - tag = '0.1.0', + tag = '0.1.4', -- or , branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' }, config = function() require('plugins.telescope') end @@ -295,19 +303,19 @@ lazy.setup({ -------------------------------------------OTHERS---------------------------------------------- - { - "nvim-neorg/neorg", - build = ":Neorg sync-parsers", - config = function() - require("neorg").setup { - load = { - ["core.defaults"] = {}, -- Loads default behaviour - ["core.concealer"] = {} -- Adds pretty icons to your documents - }, - } - end, - dependencies = { "nvim-lua/plenary.nvim" }, - }, + -- { + -- "nvim-neorg/neorg", + -- build = ":Neorg sync-parsers", + -- config = function() + -- require("neorg").setup { + -- load = { + -- ["core.defaults"] = {}, -- Loads default behaviour + -- ["core.concealer"] = {} -- Adds pretty icons to your documents + -- }, + -- } + -- end, + -- dependencies = { "nvim-lua/plenary.nvim" }, + -- }, -- 'kmonad/kmonad-vim', -- 'elkowar/yuck.vim', diff --git a/.config/nvim/lua/plugins/lspconfig.lua b/.config/nvim/lua/plugins/lspconfig.lua index 0f36dc7..0d4df96 100644 --- a/.config/nvim/lua/plugins/lspconfig.lua +++ b/.config/nvim/lua/plugins/lspconfig.lua @@ -59,29 +59,3 @@ mason_lspconfig.setup_handlers { } end, } - -require('lspconfig')['hls'].setup { - filetypes = { 'haskell', 'lhaskell', 'cabal' }, - on_attach = on_attach, - flags = lsp_flags, - capabilities = capabilities, -} - -require("rust-tools").setup({ - server = { - on_attach = on_attach, - capabilities = capabilities, - settings = { - ["rust-analyzer"] = { - checkOnSave = { - command = "clippy", - }, - }, - }, - }, - tools = { - hover_actions = { - auto_focus = true, - }, - }, -}) diff --git a/.config/wireplumber/main.lua.d/51-acer-monitor.lua b/.config/wireplumber/main.lua.d/51-acer-monitor.lua index 25f6e20..211b84d 100644 --- a/.config/wireplumber/main.lua.d/51-acer-monitor.lua +++ b/.config/wireplumber/main.lua.d/51-acer-monitor.lua @@ -1,7 +1,7 @@ rule ={ matches = { { - {"node.name","equals","GA104 High Definition Audio Controller Digital Stereo (HDMI 2)"}, + {"node.description","equals","GA104 High Definition Audio Controller Digital Stereo (HDMI)"}, } }, apply_properties = { diff --git a/.gitconfig b/.gitconfig index 276e126..2e1d6a7 100644 --- a/.gitconfig +++ b/.gitconfig @@ -17,3 +17,5 @@ gpgsign = true [pull] rebase = false +[init] + defaultBranch = main diff --git a/.local/bin/shellcheck b/.local/bin/shellcheck new file mode 100755 index 0000000..f2941dc Binary files /dev/null and b/.local/bin/shellcheck differ diff --git a/.local/bin/watchsync b/.local/bin/watchsync new file mode 100755 index 0000000..4e4addf --- /dev/null +++ b/.local/bin/watchsync @@ -0,0 +1,2 @@ +#!/bin/bash +watch -d grep -e Dirty: /proc/meminfo diff --git a/.local/bin/xmobar b/.local/bin/xmobar new file mode 100755 index 0000000..edee424 Binary files /dev/null and b/.local/bin/xmobar differ diff --git a/.local/bin/xmonad b/.local/bin/xmonad new file mode 100755 index 0000000..414f8a5 Binary files /dev/null and b/.local/bin/xmonad differ diff --git a/.ssh/config b/.ssh/config index 56bae1c..1bd80f6 100644 --- a/.ssh/config +++ b/.ssh/config @@ -8,3 +8,12 @@ Host gon Port 522 ControlPath ~/.ssh/session.%r@%h:%p ControlPersist 5m + +Host search + ControlMaster auto + HostName s7edu2.di.uminho.pt + User pg53595 + Port 22 + IdentityFile ~/.ssh/id_search + ControlPath ~/.ssh/session.%r@%h:%p + ControlPersist 5m