mirror of
https://github.com/don-philipe/dotfiles.git
synced 2025-11-08 22:57:03 +01:00
Compare commits
4 Commits
3e30bb71a0
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6bbc705f8 | ||
|
|
30d3a8c29a | ||
|
|
a414890f69 | ||
|
|
2df66474db |
@@ -10,3 +10,9 @@ vim.opt.scrolloff = 8
|
|||||||
vim.opt.incsearch = true
|
vim.opt.incsearch = true
|
||||||
|
|
||||||
vim.opt.signcolumn = "yes"
|
vim.opt.signcolumn = "yes"
|
||||||
|
|
||||||
|
vim.o.termguicolors = true
|
||||||
|
|
||||||
|
vim.diagnostic.config({
|
||||||
|
virtual_text = true,
|
||||||
|
})
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
require'nvim-treesitter.configs'.setup {
|
require'nvim-treesitter.configs'.setup {
|
||||||
-- A list of parser names, or "all" (the listed parsers MUST always be installed)
|
-- A list of parser names, or "all" (the listed parsers MUST always be installed)
|
||||||
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "markdown", "markdown_inline", "python", "javascript", "css", "html", "yaml", "java", "bash", "csv", "dockerfile", "htmldjango", "json", "nginx" },
|
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "markdown", "markdown_inline", "python", "javascript", "css", "html", "yaml", "java", "bash", "csv", "dockerfile", "htmldjango", "json", "nginx", "latex" },
|
||||||
|
|
||||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ set-window-option -g window-style bg="#32302f"
|
|||||||
set-option -g focus-events on
|
set-option -g focus-events on
|
||||||
# https://gist.github.com/andersevenrud/015e61af2fd264371032763d4ed965b6
|
# https://gist.github.com/andersevenrud/015e61af2fd264371032763d4ed965b6
|
||||||
set -g default-terminal "tmux-256color"
|
set -g default-terminal "tmux-256color"
|
||||||
set -ag terminal-overrides ",$TERM:RGB"
|
set -ag terminal-overrides ",xterm-256color:RGB"
|
||||||
|
|
||||||
# List of plugins
|
# List of plugins
|
||||||
|
|
||||||
|
|||||||
@@ -71,6 +71,14 @@ git-blobs()
|
|||||||
$(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
|
$(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sshs()
|
||||||
|
{
|
||||||
|
tmprc=$(ssh $1 "mktemp --directory")
|
||||||
|
scp -q $HOME/.zshrc $1:$tmprc
|
||||||
|
ssh -t $1 "export ZDOTDIR=${tmprc}; exec zsh"
|
||||||
|
ssh $1 "rm -rf ${tmprc}"
|
||||||
|
}
|
||||||
|
|
||||||
# show the current mode:
|
# show the current mode:
|
||||||
#PR_VIMODE="#"
|
#PR_VIMODE="#"
|
||||||
#function zle-keymap-select
|
#function zle-keymap-select
|
||||||
|
|||||||
Reference in New Issue
Block a user