Remove vimwiki and truezen
This commit is contained in:
parent
a821a26183
commit
e23fff9b7d
@ -106,11 +106,6 @@ return require('packer').startup(function(use)
|
|||||||
requires = 'kyazdani42/nvim-web-devicons',
|
requires = 'kyazdani42/nvim-web-devicons',
|
||||||
config = function() require("plugins.nvim-tree") end
|
config = function() require("plugins.nvim-tree") end
|
||||||
}
|
}
|
||||||
use {
|
|
||||||
"vimwiki/vimwiki",
|
|
||||||
cmd = "VimwikiIndex",
|
|
||||||
setup = function() require "plugins.vimwiki" end
|
|
||||||
}
|
|
||||||
use {
|
use {
|
||||||
'andymass/vim-matchup',
|
'andymass/vim-matchup',
|
||||||
after = 'nvim-treesitter',
|
after = 'nvim-treesitter',
|
||||||
@ -139,11 +134,6 @@ return require('packer').startup(function(use)
|
|||||||
}
|
}
|
||||||
|
|
||||||
-- eye-candy
|
-- eye-candy
|
||||||
use {
|
|
||||||
"Pocco81/TrueZen.nvim",
|
|
||||||
cmd = {'TZAtaraxis', 'TZFocus', 'TZMinimalist'},
|
|
||||||
config = function() require "plugins.truezen" end
|
|
||||||
}
|
|
||||||
use {
|
use {
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
"lukas-reineke/indent-blankline.nvim",
|
||||||
after = {"nvim-treesitter", "nvim-treesitter-context"},
|
after = {"nvim-treesitter", "nvim-treesitter-context"},
|
||||||
@ -194,6 +184,9 @@ return require('packer').startup(function(use)
|
|||||||
|
|
||||||
-- integrations
|
-- integrations
|
||||||
use {"tpope/vim-fugitive", cmd = "G"}
|
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)
|
end)
|
||||||
-- vim:set shiftwidth=4 tabstop=4:
|
-- vim:set shiftwidth=4 tabstop=4:
|
||||||
|
@ -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,
|
|
||||||
}
|
|
||||||
})
|
|
@ -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'}]
|
|
||||||
]])
|
|
Loading…
Reference in New Issue
Block a user