diff --git a/.config/fish/functions/fish_greeting.fish b/.config/fish/functions/fish_greeting.fish index 5e6a69d..6783c79 100644 --- a/.config/fish/functions/fish_greeting.fish +++ b/.config/fish/functions/fish_greeting.fish @@ -1,3 +1,3 @@ function fish_greeting - pfetch + # pfetch end diff --git a/.config/nvim/lua/tsousa/plugins/lsp.lua b/.config/nvim/lua/tsousa/plugins/lsp.lua index e52c432..a5e4e4b 100644 --- a/.config/nvim/lua/tsousa/plugins/lsp.lua +++ b/.config/nvim/lua/tsousa/plugins/lsp.lua @@ -2,12 +2,11 @@ return { { 'hrsh7th/nvim-cmp', dependencies = { - 'hrsh7th/cmp-nvim-lsp', -- lsp - 'hrsh7th/cmp-nvim-lua', -- Nvim API completions - 'hrsh7th/cmp-nvim-lsp-signature-help', -- Show function signatures - 'hrsh7th/cmp-buffer', --buffer completions - 'hrsh7th/cmp-path', --path completions - 'hrsh7th/cmp-cmdline', --cmdline completions + 'hrsh7th/cmp-nvim-lsp', -- lsp + 'hrsh7th/cmp-nvim-lua', -- Nvim API completions + 'hrsh7th/cmp-buffer', --buffer completions + 'hrsh7th/cmp-path', --path completions + 'hrsh7th/cmp-cmdline', --cmdline completions 'saadparwaiz1/cmp_luasnip', 'L3MON4D3/LuaSnip', 'onsails/lspkind.nvim', @@ -189,7 +188,13 @@ return { "j-hui/fidget.nvim", }, config = function() - require("fidget").setup() + require("fidget").setup({ + notification = { + window = { + winblend = 0, + } + } + }) vim.api.nvim_create_augroup("_mason", { clear = true }) require("mason").setup({ PATH = "skip", diff --git a/.config/nvim/lua/tsousa/plugins/orgmode.lua b/.config/nvim/lua/tsousa/plugins/orgmode.lua index bdac638..91542e8 100644 --- a/.config/nvim/lua/tsousa/plugins/orgmode.lua +++ b/.config/nvim/lua/tsousa/plugins/orgmode.lua @@ -1,7 +1,16 @@ return { "nvim-orgmode/orgmode", + dependencies = { + "nvim-treesitter/nvim-treesitter", + "akinsho/org-bullets.nvim", + }, config = function() -- -- Load custom treesitter grammar for org filetype + require("org-bullets").setup({ + symbols = { + headlines = { "◉", "○", "●", "✸" }, + }, + }) require('orgmode').setup_ts_grammar() -- Treesitter configuration require('nvim-treesitter.configs').setup { @@ -15,9 +24,8 @@ return { }, ensure_installed = { 'org' }, -- Or run :TSUpdate org } - require('orgmode').setup({ - org_agenda_files = { '~/Nextcloud/org/**/*', '~/Nextcloud/Documents/uni/**/*'}, + org_agenda_files = { '~/Nextcloud/org/**/*', '~/Nextcloud/Documents/uni/**/*' }, org_default_notes_file = '~/Nextcloud/org/refile.org', }) end diff --git a/.local/share/scripts/tmux-sessionizer.sh b/.local/share/scripts/tmux-sessionizer.sh index 11c395c..87feb68 100755 --- a/.local/share/scripts/tmux-sessionizer.sh +++ b/.local/share/scripts/tmux-sessionizer.sh @@ -4,7 +4,7 @@ if [[ $# -eq 1 ]]; then selected=$1 else - selected=$(find ~/.config ~/gits ~/uni ~/2sem ~/ -mindepth 1 -maxdepth 1 -type d | fzf) + selected=$(find ~/.config ~/gits ~/2sem ~/ -mindepth 1 -maxdepth 1 -type d,l | fzf) fi if [[ -z "$selected" ]]; then