finally fixed orgmode, cant forget to change conda path on laptop
This commit is contained in:
parent
0c1feb7b06
commit
469c02ad73
3 changed files with 7 additions and 5 deletions
|
@ -26,8 +26,8 @@ starship init fish | source
|
||||||
|
|
||||||
# >>> conda initialize >>>
|
# >>> conda initialize >>>
|
||||||
# !! Contents within this block are managed by 'conda init' !!
|
# !! Contents within this block are managed by 'conda init' !!
|
||||||
if test -f /home/tsousa/miniconda3/bin/conda
|
if test -f /home/tsousa/.miniconda3/bin/conda
|
||||||
eval /home/tsousa/miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
eval /home/tsousa/.miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
||||||
end
|
end
|
||||||
# <<< conda initialize <<<
|
# <<< conda initialize <<<
|
||||||
conda deactivate
|
conda deactivate
|
||||||
|
|
|
@ -16,6 +16,6 @@ require('nvim-treesitter.configs').setup {
|
||||||
}
|
}
|
||||||
|
|
||||||
require('orgmode').setup({
|
require('orgmode').setup({
|
||||||
org_agenda_files = { '~/Nextcloud/org/*', '~/my-orgs/**/*' },
|
org_agenda_files = { '~/Nextcloud/Documents/uni/**/*'},
|
||||||
org_default_notes_file = '~/Nextcloud/org/refile.org',
|
org_default_notes_file = '~/Nextcloud/Documents/uni/refile.org',
|
||||||
})
|
})
|
||||||
|
|
|
@ -23,7 +23,6 @@ return require('packer').startup(function(use)
|
||||||
|
|
||||||
use("norcalli/nvim-colorizer.lua")
|
use("norcalli/nvim-colorizer.lua")
|
||||||
|
|
||||||
use("nvim-orgmode/orgmode")
|
|
||||||
use("lervag/vimtex")
|
use("lervag/vimtex")
|
||||||
|
|
||||||
use({
|
use({
|
||||||
|
@ -52,6 +51,9 @@ return require('packer').startup(function(use)
|
||||||
use("nvim-treesitter/nvim-treesitter", {
|
use("nvim-treesitter/nvim-treesitter", {
|
||||||
run = ":TSUpdate"
|
run = ":TSUpdate"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
use("nvim-orgmode/orgmode")
|
||||||
use('nvim-lualine/lualine.nvim')
|
use('nvim-lualine/lualine.nvim')
|
||||||
|
|
||||||
use("nvim-treesitter/playground")
|
use("nvim-treesitter/playground")
|
||||||
|
|
Loading…
Reference in a new issue