Compare commits
6 Commits
master
...
a6ef8ff9c5
| Author | SHA1 | Date | |
|---|---|---|---|
| a6ef8ff9c5 | |||
| 1090058c08 | |||
| 6609158c5d | |||
| f2fc3599a8 | |||
| cfba74467f | |||
|
|
7a240b42c3 |
@@ -20,6 +20,21 @@ require('plugins.lsp')
|
|||||||
require('plugins.diffview')
|
require('plugins.diffview')
|
||||||
require('plugins.which-key')
|
require('plugins.which-key')
|
||||||
require('plugins.codecompanion')
|
require('plugins.codecompanion')
|
||||||
|
require('plugins.fff')
|
||||||
|
|
||||||
|
local kitten = vim.fn.expand("~/.local/share/kitty-ssh-kitten/kitty/bin/kitten")
|
||||||
|
vim.opt.clipboard = "unnamedplus"
|
||||||
|
vim.g.clipboard = {
|
||||||
|
name = 'OSC 52',
|
||||||
|
copy = {
|
||||||
|
['+'] = require('vim.ui.clipboard.osc52').copy('+'),
|
||||||
|
-- ['*'] = require('vim.ui.clipboard.osc52').copy('*'),
|
||||||
|
},
|
||||||
|
paste = {
|
||||||
|
['+'] = require('vim.ui.clipboard.osc52').paste('+'),
|
||||||
|
-- ['*'] = require('vim.ui.clipboard.osc52').paste('*'),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
vim.cmd('syntax enable')
|
vim.cmd('syntax enable')
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,10 @@
|
|||||||
"rev": "4516612fe98ff56ae0415a259ff6361a89419b0a",
|
"rev": "4516612fe98ff56ae0415a259ff6361a89419b0a",
|
||||||
"src": "https://github.com/sindrets/diffview.nvim"
|
"src": "https://github.com/sindrets/diffview.nvim"
|
||||||
},
|
},
|
||||||
|
"fff.nvim": {
|
||||||
|
"rev": "fbee146c44c99b02fc00ad1d5d32f44e53e2aeec",
|
||||||
|
"src": "https://github.com/dmtrKovalenko/fff.nvim"
|
||||||
|
},
|
||||||
"mason-lspconfig.nvim": {
|
"mason-lspconfig.nvim": {
|
||||||
"rev": "a324581a3c83fdacdb9804b79de1cbe00ce18550",
|
"rev": "a324581a3c83fdacdb9804b79de1cbe00ce18550",
|
||||||
"src": "https://github.com/mason-org/mason-lspconfig.nvim"
|
"src": "https://github.com/mason-org/mason-lspconfig.nvim"
|
||||||
|
|||||||
12
.zshrc
12
.zshrc
@@ -17,6 +17,13 @@ export ZSH_CUSTOM="$HOME/.config/zsh_custom"
|
|||||||
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
||||||
ZSH_THEME="powerlevel10k/powerlevel10k"
|
ZSH_THEME="powerlevel10k/powerlevel10k"
|
||||||
|
|
||||||
|
if [[ -n $ZMX_SESSION ]]; then
|
||||||
|
export PS1="[$ZMX_SESSION] ${PS1}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
export ANDROID_PW_FILE="/tmp/key_list.txt"
|
||||||
|
export EDITOR="nvim"
|
||||||
|
|
||||||
# Set list of themes to pick from when loading at random
|
# Set list of themes to pick from when loading at random
|
||||||
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
# a theme from this variable instead of looking in $ZSH/themes/
|
# a theme from this variable instead of looking in $ZSH/themes/
|
||||||
@@ -118,3 +125,8 @@ source $ZSH/oh-my-zsh.sh
|
|||||||
|
|
||||||
# To customize prompt, run `p10k configure` or edit ~/.config/zsh_custom/10-p10k.zsh.
|
# To customize prompt, run `p10k configure` or edit ~/.config/zsh_custom/10-p10k.zsh.
|
||||||
[[ ! -f ~/.config/zsh_custom/10-p10k.zsh ]] || source ~/.config/zsh_custom/10-p10k.zsh
|
[[ ! -f ~/.config/zsh_custom/10-p10k.zsh ]] || source ~/.config/zsh_custom/10-p10k.zsh
|
||||||
|
export USE_CCACHE=1
|
||||||
|
export CCACHE_EXEC=/usr/bin/ccache
|
||||||
|
ccache -M 50G > /dev/null
|
||||||
|
|
||||||
|
path=("$HOME/.nix-profile/bin" $path)
|
||||||
|
|||||||
Reference in New Issue
Block a user