Compare commits
3 Commits
a6d2ce2f22
...
b745e15242
Author | SHA1 | Date | |
---|---|---|---|
b745e15242 | |||
c6a5e6ba07 | |||
af26c6978f |
@ -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
|
macro y set browser "tmux new-window mpv %u"; open-in-browser ; set browser "chromium --incognito"
|
||||||
macro Y set browser "mpv %u"; open-in-browser ; set browser chromium
|
macro Y set browser "mpv %u"; open-in-browser ; set browser "chromium --incognito"
|
||||||
|
|
||||||
unbind-key h
|
unbind-key h
|
||||||
unbind-key j
|
unbind-key j
|
||||||
@ -14,6 +14,13 @@ 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,6 +64,7 @@ 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"
|
||||||
|
9
nvim/.config/nvim/lua/config/oil.lua
Normal file
9
nvim/.config/nvim/lua/config/oil.lua
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
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,6 +178,20 @@ 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 = {
|
||||||
@ -201,6 +215,11 @@ 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,4 +1,5 @@
|
|||||||
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
|
||||||
@ -88,5 +89,8 @@ _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