diff --git a/lua/pluginList.lua b/lua/pluginList.lua index 92fccaa..2c80c7d 100644 --- a/lua/pluginList.lua +++ b/lua/pluginList.lua @@ -106,11 +106,6 @@ return require('packer').startup(function(use) requires = 'kyazdani42/nvim-web-devicons', config = function() require("plugins.nvim-tree") end } - use { - "vimwiki/vimwiki", - cmd = "VimwikiIndex", - setup = function() require "plugins.vimwiki" end - } use { 'andymass/vim-matchup', after = 'nvim-treesitter', @@ -139,11 +134,6 @@ return require('packer').startup(function(use) } -- eye-candy - use { - "Pocco81/TrueZen.nvim", - cmd = {'TZAtaraxis', 'TZFocus', 'TZMinimalist'}, - config = function() require "plugins.truezen" end - } use { "lukas-reineke/indent-blankline.nvim", after = {"nvim-treesitter", "nvim-treesitter-context"}, @@ -194,6 +184,9 @@ return require('packer').startup(function(use) -- integrations use {"tpope/vim-fugitive", cmd = "G"} - use {"JuanCldCmt/glow.nvim", branch = 'main', cmd = {"Glow", "GlowInstall"}} + use {"ellisonleao/glow.nvim", branch = 'main', cmd = {"Glow", "GlowInstall"}} + + -- fixes and misc. stuff + use {"antoinemadec/FixCursorHold.nvim"} end) -- vim:set shiftwidth=4 tabstop=4: diff --git a/lua/plugins/truezen.lua b/lua/plugins/truezen.lua deleted file mode 100644 index ad81b87..0000000 --- a/lua/plugins/truezen.lua +++ /dev/null @@ -1,70 +0,0 @@ -local true_zen = require("true-zen") - -true_zen.setup({ - ui = { - bottom = { - laststatus = 0, - ruler = false, - showmode = false, - showcmd = false, - cmdheight = 1, - }, - top = { - showtabline = 0, - }, - left = { - number = false, - relativenumber = false, - signcolumn = "no", - }, - }, - modes = { - ataraxis = { - left_padding = 24, - right_padding = 24, - top_padding = 1, - bottom_padding = 1, - ideal_writing_area_width = {0}, - auto_padding = true, - keep_default_fold_fillchars = true, - custom_bg = {"none", ""}, - bg_configuration = true, - quit = "untoggle", - ignore_floating_windows = true, - affected_higroups = { - NonText = true, - FoldColumn = true, - ColorColumn = true, - VertSplit = true, - StatusLine = true, - StatusLineNC = true, - SignColumn = true, - }, - }, - focus = { - margin_of_error = 5, - focus_method = "experimental" - }, - }, - integrations = { - vim_gitgutter = false, - galaxyline = false, - tmux = false, - gitsigns = false, - nvim_bufferline = false, - limelight = false, - twilight = false, - vim_airline = false, - vim_powerline = false, - vim_signify = false, - express_line = false, - lualine = false, - lightline = false, - feline = false - }, - misc = { - on_off_commands = false, - ui_elements_commands = false, - cursor_by_mode = false, - } -}) diff --git a/lua/plugins/vimwiki.lua b/lua/plugins/vimwiki.lua deleted file mode 100644 index 9dbc27b..0000000 --- a/lua/plugins/vimwiki.lua +++ /dev/null @@ -1,4 +0,0 @@ -vim.api.nvim_set_var('vimwiki_global_ext', 0) -vim.cmd([[ -let g:vimwiki_list = [{'path': '~/Documents/Personal/Wiki/', 'syntax': 'markdown', 'ext': '.md'}] -]])