Compare commits
No commits in common. "b745e1524287cc7bf4d54a052babd3cf0b0ac88a" and "a6d2ce2f220c87cfcf2a31ff41a61bd15679099e" have entirely different histories.
b745e15242
...
a6d2ce2f22
@ -1,8 +1,8 @@
|
|||||||
auto-reload yes
|
auto-reload yes
|
||||||
reload-time 30
|
reload-time 30
|
||||||
browser "chromium --incognito"
|
browser "chromium --incognito"
|
||||||
macro y set browser "tmux new-window mpv %u"; open-in-browser ; set browser "chromium --incognito"
|
macro y set browser "tmux new-window mpv %u"; open-in-browser ; set browser chromium
|
||||||
macro Y set browser "mpv %u"; open-in-browser ; set browser "chromium --incognito"
|
macro Y set browser "mpv %u"; open-in-browser ; set browser chromium
|
||||||
|
|
||||||
unbind-key h
|
unbind-key h
|
||||||
unbind-key j
|
unbind-key j
|
||||||
@ -14,13 +14,6 @@ bind-key j down
|
|||||||
bind-key k up
|
bind-key k up
|
||||||
bind-key l open
|
bind-key l open
|
||||||
|
|
||||||
unbind-key G
|
|
||||||
bind-key G end
|
|
||||||
bind-key s sort
|
|
||||||
unbind-key g
|
|
||||||
bind-key g home
|
|
||||||
bind-key S rev-sort
|
|
||||||
|
|
||||||
color background default default
|
color background default default
|
||||||
color listnormal default default
|
color listnormal default default
|
||||||
color listnormal_unread default default
|
color listnormal_unread default default
|
||||||
|
@ -64,7 +64,6 @@ https://www.youtube.com/feeds/videos.xml?channel_id=UC8ENHE5xdFSwx71u3fDH5Xw "Vi
|
|||||||
https://www.youtube.com/feeds/videos.xml?channel_id=UCXPHFM88IlFn68OmLwtPmZA "Vim" "Greg Hurrel"
|
https://www.youtube.com/feeds/videos.xml?channel_id=UCXPHFM88IlFn68OmLwtPmZA "Vim" "Greg Hurrel"
|
||||||
https://www.youtube.com/feeds/videos.xml?channel_id=UCs_AZuYXi6NA9tkdbhjItHQ "AdminSys" "Xavki"
|
https://www.youtube.com/feeds/videos.xml?channel_id=UCs_AZuYXi6NA9tkdbhjItHQ "AdminSys" "Xavki"
|
||||||
https://www.youtube.com/feeds/videos.xml?channel_id=UCOk-gHyjcWZNj3Br4oxwh0A "Homelab" "Techno Tim"
|
https://www.youtube.com/feeds/videos.xml?channel_id=UCOk-gHyjcWZNj3Br4oxwh0A "Homelab" "Techno Tim"
|
||||||
https://www.youtube.com/feeds/videos.xml?channel_id=UCWQaM7SpSECp9FELz-cHzuQ "Cording" "Dream of Code"
|
|
||||||
https://www.youtube.com/feeds/videos.xml?channel_id=UCvjgXvBlbQiydffZU7m1_aw "Programmation" "~Coding Train"
|
https://www.youtube.com/feeds/videos.xml?channel_id=UCvjgXvBlbQiydffZU7m1_aw "Programmation" "~Coding Train"
|
||||||
https://www.youtube.com/feeds/videos.xml?channel_id=UCj_iGliGCkLcHSZ8eqVNPDQ "Programmation" "~Grafikart.fr"
|
https://www.youtube.com/feeds/videos.xml?channel_id=UCj_iGliGCkLcHSZ8eqVNPDQ "Programmation" "~Grafikart.fr"
|
||||||
https://www.youtube.com/feeds/videos.xml?channel_id=UCLOAPb7ATQUs_nDs9ViLcMw "Programmation" "Benjamin Code"
|
https://www.youtube.com/feeds/videos.xml?channel_id=UCLOAPb7ATQUs_nDs9ViLcMw "Programmation" "Benjamin Code"
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
local status, oil = pcall(require, "oil")
|
|
||||||
if (not status) then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
oil.setup()
|
|
||||||
|
|
||||||
local opts = { noremap=true, silent=false }
|
|
||||||
vim.keymap.set("n", "-", oil.open, { desc = "Open parent directory" }, opts)
|
|
@ -178,20 +178,6 @@ return packer.startup(function(use)
|
|||||||
config = function()
|
config = function()
|
||||||
require("noice").setup({
|
require("noice").setup({
|
||||||
-- add any options here
|
-- add any options here
|
||||||
throttle = 1000,
|
|
||||||
lsp = {
|
|
||||||
progress = {
|
|
||||||
enabled = true,
|
|
||||||
-- Lsp Progress is formatted using the builtins for lsp_progress. See config.format.builtin
|
|
||||||
-- See the section on formatting for more details on how to customize.
|
|
||||||
--- @type NoiceFormat|string
|
|
||||||
format = "lsp_progress",
|
|
||||||
--- @type NoiceFormat|string
|
|
||||||
format_done = "lsp_progress_done",
|
|
||||||
throttle = 1000, -- frequency to update lsp progress message
|
|
||||||
view = "mini",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
requires = {
|
requires = {
|
||||||
@ -215,11 +201,6 @@ return packer.startup(function(use)
|
|||||||
config = [[require('config.indentblankline')]]
|
config = [[require('config.indentblankline')]]
|
||||||
}
|
}
|
||||||
|
|
||||||
use {
|
|
||||||
'stevearc/oil.nvim',
|
|
||||||
config = [[require('config.oil')]]
|
|
||||||
}
|
|
||||||
|
|
||||||
if PACKER_BOOTSTRAP then
|
if PACKER_BOOTSTRAP then
|
||||||
require("packer").sync()
|
require("packer").sync()
|
||||||
end
|
end
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
fpath+=$ZDOTDIR/pure
|
fpath+=$ZDOTDIR/pure
|
||||||
fpath+=$ZDOTDIR/zfunc
|
|
||||||
|
|
||||||
autoload -U compinit
|
autoload -U compinit
|
||||||
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' # menu select=2
|
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' # menu select=2
|
||||||
@ -89,8 +88,5 @@ _fzf_complete_pass() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
# yarn global commands
|
|
||||||
export PATH="$(yarn global bin):$PATH"
|
|
||||||
|
|
||||||
# zk
|
# zk
|
||||||
export ZK_NOTEBOOK_DIR="/home/lafrite/Nextcloud/Documents/zettelkasten/"
|
export ZK_NOTEBOOK_DIR="/home/lafrite/Nextcloud/Documents/zettelkasten/"
|
||||||
|
Loading…
Reference in New Issue
Block a user