fidget background fix, org-bullets

This commit is contained in:
Tiago Sousa 2024-02-04 18:05:23 +00:00
parent 7f54fe973e
commit b392cc4135
4 changed files with 24 additions and 11 deletions

View file

@ -1,3 +1,3 @@
function fish_greeting
pfetch
# pfetch
end

View file

@ -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",

View file

@ -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

View file

@ -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