Compare commits

2 Commits

Author SHA1 Message Date
0146ea8052 fix: added fff config 2026-07-29 14:52:39 +00:00
22a06955a2 feat: added fff to nvim 2026-07-29 14:32:56 +00:00
2 changed files with 0 additions and 26 deletions

View File

@@ -22,20 +22,6 @@ require('plugins.which-key')
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')

12
.zshrc
View File

@@ -17,13 +17,6 @@ export ZSH_CUSTOM="$HOME/.config/zsh_custom"
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
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
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in $ZSH/themes/
@@ -125,8 +118,3 @@ source $ZSH/oh-my-zsh.sh
# 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
export USE_CCACHE=1
export CCACHE_EXEC=/usr/bin/ccache
ccache -M 50G > /dev/null
path=("$HOME/.nix-profile/bin" $path)