diff options
Diffstat (limited to 'Common/nvim/lua/plugins.lua')
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 40 |
1 files changed, 1 insertions, 39 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 67bd4d1..1faf832 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -90,57 +90,19 @@ return require('packer').startup(function(use) nmap <leader>dbb <Plug>(DBExeLine) autocmd FileType dbout setlocal nofoldenable - - if !empty(glob("~/.env.vim")) - source ~/.env.vim - endif ]] end, } -- Useful for wide screens use { - 'smithbm2316/centerpad.nvim' + 'junegunn/goyo.vim' } -- VimWiki stuff use { 'vimwiki/vimwiki', config = function () - vim.g.vimwiki_list = { - { - path = '~/Nextcloud/2-Områder/204-profesjonelt/204.06-infomedia/204.06.AA-wiki', - syntax = 'markdown', - ext = 'md', - name = 'I45', - auto_toc = 1, - diary_frequency = 'daily', - nested_syntaxes = { - python = 'python', - sql = 'sql', - }, - }, - { - path = '~/Nextcloud/1-Prosjekter/101-masteroppgave/101.02-quick-notes', - syntax = 'markdown', - ext = 'md', - name = 'P101', - auto_toc = 1, - nested_syntaxes = { - python = 'python', - sql = 'sql', - }, - }, - { - path = '~/Nextcloud/', - syntax = 'markdown', - ext = 'md', - name = 'P01', - --nested_syntaxes = { - -- python = 'python', - --}, - }, - } vim.g.vimwiki_global_ext = 0 vim.g.vimwiki_auto_header = 1 vim.g.vimwiki_links_space_char = '_' |