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 >>>
|
||||
# !! Contents within this block are managed by 'conda init' !!
|
||||
if test -f /home/tsousa/miniconda3/bin/conda
|
||||
eval /home/tsousa/miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
||||
if test -f /home/tsousa/.miniconda3/bin/conda
|
||||
eval /home/tsousa/.miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
||||
end
|
||||
# <<< conda initialize <<<
|
||||
conda deactivate
|
||||
|
|
|
@ -16,6 +16,6 @@ require('nvim-treesitter.configs').setup {
|
|||
}
|
||||
|
||||
require('orgmode').setup({
|
||||
org_agenda_files = { '~/Nextcloud/org/*', '~/my-orgs/**/*' },
|
||||
org_default_notes_file = '~/Nextcloud/org/refile.org',
|
||||
org_agenda_files = { '~/Nextcloud/Documents/uni/**/*'},
|
||||
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("nvim-orgmode/orgmode")
|
||||
use("lervag/vimtex")
|
||||
|
||||
use({
|
||||
|
@ -52,6 +51,9 @@ return require('packer').startup(function(use)
|
|||
use("nvim-treesitter/nvim-treesitter", {
|
||||
run = ":TSUpdate"
|
||||
})
|
||||
|
||||
|
||||
use("nvim-orgmode/orgmode")
|
||||
use('nvim-lualine/lualine.nvim')
|
||||
|
||||
use("nvim-treesitter/playground")
|
||||
|
|
Loading…
Reference in a new issue