Compare commits
No commits in common. "ac0e66cd339ffc3a8cb140752681d5eb5a60c86e" and "47bf0fdd8e86105661f0ba6369b233f51132dff2" have entirely different histories.
ac0e66cd33
...
47bf0fdd8e
5 changed files with 24 additions and 32 deletions
|
@ -1,20 +0,0 @@
|
|||
require("zk").setup({
|
||||
-- can be "telescope", "fzf" or "select" (`vim.ui.select`)
|
||||
-- it's recommended to use "telescope" or "fzf"
|
||||
picker = "telescope",
|
||||
lsp = {
|
||||
-- `config` is passed to `vim.lsp.start_client(config)`
|
||||
config = {
|
||||
cmd = { "zk", "lsp" },
|
||||
name = "zk",
|
||||
-- on_attach = ...
|
||||
-- etc, see `:h vim.lsp.start_client()`
|
||||
},
|
||||
|
||||
-- automatically attach buffers in a zk notebook that match the given filetypes
|
||||
auto_attach = {
|
||||
enabled = true,
|
||||
filetypes = { "markdown" },
|
||||
},
|
||||
},
|
||||
})
|
|
@ -7,17 +7,33 @@ lvim.plugins = {
|
|||
'catppuccin/nvim',
|
||||
as = 'catppuccin'
|
||||
},
|
||||
{ 'Djancyp/better-comments.nvim',
|
||||
config = function()
|
||||
require('better-comment').Setup()
|
||||
end
|
||||
},
|
||||
{ 'NoahTheDuke/vim-just' },
|
||||
{ 'ggandor/lightspeed.nvim' },
|
||||
{ 'elkowar/yuck.vim' },
|
||||
{
|
||||
'mickael-menu/zk-nvim',
|
||||
config = p "zk";
|
||||
config = function()
|
||||
require("zk").setup({
|
||||
-- can be "telescope", "fzf" or "select" (`vim.ui.select`)
|
||||
-- it's recommended to use "telescope" or "fzf"
|
||||
picker = "telescope",
|
||||
lsp = {
|
||||
-- `config` is passed to `vim.lsp.start_client(config)`
|
||||
config = {
|
||||
cmd = { "zk", "lsp" },
|
||||
name = "zk",
|
||||
-- on_attach = ...
|
||||
-- etc, see `:h vim.lsp.start_client()`
|
||||
},
|
||||
|
||||
-- automatically attach buffers in a zk notebook that match the given filetypes
|
||||
auto_attach = {
|
||||
enabled = true,
|
||||
filetypes = { "markdown" },
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -45,9 +45,11 @@ alias fzf-bat="fzf --preview 'bat --style=numbers --color=always --line-range :5
|
|||
alias vivaldi="vivaldi-stable"
|
||||
|
||||
if is-executable zellij; then
|
||||
|
||||
alias zs="zellij -s"
|
||||
alias zl="zellij ls"
|
||||
alias za="zellij a"
|
||||
|
||||
fi
|
||||
|
||||
alias zenith="zenith -d 0 -n 0"
|
||||
|
|
|
@ -79,8 +79,3 @@ alias bathelp='bat --plain --language=help'
|
|||
help() {
|
||||
"$@" --help 2>&1 | bathelp
|
||||
}
|
||||
|
||||
format-qmd() {
|
||||
jupytext --from qmd $1 --pipe black
|
||||
}
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@ is-executable getconf && PATH=$($(command -v getconf) PATH)
|
|||
prepend-path "/bin"
|
||||
prepend-path "/usr/bin"
|
||||
prepend-path "/usr/local/bin"
|
||||
|
||||
PATH="$DOTFILES_DIR/bin:$PATH"
|
||||
PATH="$HOME/bin:$PATH"
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
|
|
Loading…
Reference in a new issue