fidget background fix, org-bullets
This commit is contained in:
parent
7f54fe973e
commit
b392cc4135
4 changed files with 24 additions and 11 deletions
|
@ -1,3 +1,3 @@
|
||||||
function fish_greeting
|
function fish_greeting
|
||||||
pfetch
|
# pfetch
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,6 @@ return {
|
||||||
dependencies = {
|
dependencies = {
|
||||||
'hrsh7th/cmp-nvim-lsp', -- lsp
|
'hrsh7th/cmp-nvim-lsp', -- lsp
|
||||||
'hrsh7th/cmp-nvim-lua', -- Nvim API completions
|
'hrsh7th/cmp-nvim-lua', -- Nvim API completions
|
||||||
'hrsh7th/cmp-nvim-lsp-signature-help', -- Show function signatures
|
|
||||||
'hrsh7th/cmp-buffer', --buffer completions
|
'hrsh7th/cmp-buffer', --buffer completions
|
||||||
'hrsh7th/cmp-path', --path completions
|
'hrsh7th/cmp-path', --path completions
|
||||||
'hrsh7th/cmp-cmdline', --cmdline completions
|
'hrsh7th/cmp-cmdline', --cmdline completions
|
||||||
|
@ -189,7 +188,13 @@ return {
|
||||||
"j-hui/fidget.nvim",
|
"j-hui/fidget.nvim",
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("fidget").setup()
|
require("fidget").setup({
|
||||||
|
notification = {
|
||||||
|
window = {
|
||||||
|
winblend = 0,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
vim.api.nvim_create_augroup("_mason", { clear = true })
|
vim.api.nvim_create_augroup("_mason", { clear = true })
|
||||||
require("mason").setup({
|
require("mason").setup({
|
||||||
PATH = "skip",
|
PATH = "skip",
|
||||||
|
|
|
@ -1,7 +1,16 @@
|
||||||
return {
|
return {
|
||||||
"nvim-orgmode/orgmode",
|
"nvim-orgmode/orgmode",
|
||||||
|
dependencies = {
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
"akinsho/org-bullets.nvim",
|
||||||
|
},
|
||||||
config = function()
|
config = function()
|
||||||
-- -- Load custom treesitter grammar for org filetype
|
-- -- Load custom treesitter grammar for org filetype
|
||||||
|
require("org-bullets").setup({
|
||||||
|
symbols = {
|
||||||
|
headlines = { "◉", "○", "●", "✸" },
|
||||||
|
},
|
||||||
|
})
|
||||||
require('orgmode').setup_ts_grammar()
|
require('orgmode').setup_ts_grammar()
|
||||||
-- Treesitter configuration
|
-- Treesitter configuration
|
||||||
require('nvim-treesitter.configs').setup {
|
require('nvim-treesitter.configs').setup {
|
||||||
|
@ -15,7 +24,6 @@ return {
|
||||||
},
|
},
|
||||||
ensure_installed = { 'org' }, -- Or run :TSUpdate org
|
ensure_installed = { 'org' }, -- Or run :TSUpdate org
|
||||||
}
|
}
|
||||||
|
|
||||||
require('orgmode').setup({
|
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',
|
org_default_notes_file = '~/Nextcloud/org/refile.org',
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
if [[ $# -eq 1 ]]; then
|
if [[ $# -eq 1 ]]; then
|
||||||
selected=$1
|
selected=$1
|
||||||
else
|
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
|
fi
|
||||||
|
|
||||||
if [[ -z "$selected" ]]; then
|
if [[ -z "$selected" ]]; then
|
||||||
|
|
Loading…
Reference in a new issue