summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackson Taylor <jtaylor@classicalconversations.com>2024-01-18 09:57:32 -0500
committerJackson Taylor <jtaylor@classicalconversations.com>2024-01-18 09:58:35 -0500
commit4bfda6f991610ce24c403dc200534c05017acf55 (patch)
tree7b3937f4fa2b14785d5ee5aefb087136feb59d4e
parent315578ecc338b3bc81f518485fa1fbbd4e4d088f (diff)
Reorder vimwiki entries
-rw-r--r--after/plugin/color.lua2
-rw-r--r--after/plugin/vim-startify.rc.vim3
-rw-r--r--lua/jacksontaylorxyz/packer.lua14
3 files changed, 11 insertions, 8 deletions
diff --git a/after/plugin/color.lua b/after/plugin/color.lua
index 2947184..252b227 100644
--- a/after/plugin/color.lua
+++ b/after/plugin/color.lua
@@ -1,3 +1,3 @@
--- vim.cmd("colorscheme templeos")
+-- vim.cmd("colorscheme hybrid_reverse")
vim.cmd("colorscheme gruvbox")
vim.opt.termguicolors = true
diff --git a/after/plugin/vim-startify.rc.vim b/after/plugin/vim-startify.rc.vim
index a44a200..f5d766d 100644
--- a/after/plugin/vim-startify.rc.vim
+++ b/after/plugin/vim-startify.rc.vim
@@ -812,6 +812,7 @@ let g:startify_lists = [
" \ { 'type': 'dir', 'header': [' MRU '. getcwd()] },
let g:startify_commands = [
- \['Vimwiki Index', 'VimwikiIndex'],
+ \['Work Vimwiki', 'VimwikiIndex 3'],
+ \['Personal Vimwiki', 'VimwikiIndex 1'],
\["Today's Diary", 'VimwikiMakeDiaryNote'],
\]
diff --git a/lua/jacksontaylorxyz/packer.lua b/lua/jacksontaylorxyz/packer.lua
index eb54bc6..91d9ec5 100644
--- a/lua/jacksontaylorxyz/packer.lua
+++ b/lua/jacksontaylorxyz/packer.lua
@@ -5,7 +5,7 @@ vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
-- Packer can manage itself
- use 'wbthomason/packer.nvim'
+ use 'wbthomason/packer.nvim' -- Package manager
-- Quality of life things
use 'tpope/vim-commentary' -- Really nice commenting functions
@@ -25,9 +25,9 @@ return require('packer').startup(function(use)
requires = "nvim-lua/plenary.nvim",
config = function()
require("todo-comments").setup {
- -- your configuration comes here
- -- or leave it empty to use the default settings
- -- refer to the configuration section
+ -- leave this empty to use the default settings
+ -- https://github.com/folke/todo-comments.nvim#%EF%B8%8F-configuration
+ -- TODO: Change up colors maybe, and provide alternate words so that FIX also triggers FIXME colors/settings for example
}
end
}
@@ -63,8 +63,10 @@ return require('packer').startup(function(use)
{
path = '~/vimwiki/work/',
path_html = '~/vimwiki/work/html',
- syntax = 'default',
- ext = '.wiki'
+ -- syntax = 'default',
+ -- ext = '.wiki'
+ syntax = 'markdown',
+ ext = '.md'
},
}
end