Compare commits
3 Commits
77d3404812
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a832eec36 | |||
| 116ab17242 | |||
| 5c1ae1da4a |
@ -49,5 +49,8 @@ keymap("n", "<S-h>", ":tabprevious<CR>", opts)
|
|||||||
-- Copy to clipboard
|
-- Copy to clipboard
|
||||||
keymap("v", "<C-c>", "\"+y", opts)
|
keymap("v", "<C-c>", "\"+y", opts)
|
||||||
|
|
||||||
|
-- Copy relative path of current ile to clipboard
|
||||||
|
keymap("n", "<C-y>", ":let @+ = expand(\"%\")<CR>", opts)
|
||||||
|
|
||||||
--Close buffer
|
--Close buffer
|
||||||
-- keymap("n", "<C-w>", ":bd | bp <CR>", opts)
|
-- keymap("n", "<C-w>", ":bd | bp <CR>", opts)
|
||||||
|
|||||||
@ -1,11 +1,18 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"L3MON4D3/LuaSnip",
|
"L3MON4D3/LuaSnip",
|
||||||
event = "VeryLazy",
|
lazy = false,
|
||||||
config = true,
|
opts = {
|
||||||
|
region_check_events = "CursorHold,InsertLeave,InsertEnter",
|
||||||
|
-- those are for removing deleted snippets, also a common problem
|
||||||
|
delete_check_events = "TextChanged,InsertEnter",
|
||||||
|
},
|
||||||
|
config = function(_, opts)
|
||||||
|
local luasnip = require("luasnip")
|
||||||
|
luasnip.setup(opts)
|
||||||
|
end,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"rafamadriz/friendly-snippets",
|
"rafamadriz/friendly-snippets",
|
||||||
-- "dsznajder/vscode-es7-javascript-react-snippets",
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,8 +2,8 @@ function FindProxyForURL(url, host) {
|
|||||||
// Proxy server (customize this line)
|
// Proxy server (customize this line)
|
||||||
var proxy = "PROXY 91.199.147.158:3128";
|
var proxy = "PROXY 91.199.147.158:3128";
|
||||||
|
|
||||||
// Domains related to ChatGPT/OpenAI
|
|
||||||
var proxy_domains = [
|
var proxy_domains = [
|
||||||
|
// Domains related to ChatGPT/OpenAI
|
||||||
"chatgpt.com",
|
"chatgpt.com",
|
||||||
"chat.openai.com",
|
"chat.openai.com",
|
||||||
"openai.com",
|
"openai.com",
|
||||||
@ -11,6 +11,7 @@ function FindProxyForURL(url, host) {
|
|||||||
"platform.openai.com",
|
"platform.openai.com",
|
||||||
"auth0.openai.com",
|
"auth0.openai.com",
|
||||||
|
|
||||||
|
// Youtube related domains
|
||||||
"*.youtube.com",
|
"*.youtube.com",
|
||||||
"youtube.com",
|
"youtube.com",
|
||||||
"*.googlevideo.com",
|
"*.googlevideo.com",
|
||||||
|
|||||||
@ -3,9 +3,15 @@ export PATH=~/.local/bin:~/.cargo/bin:$PATH
|
|||||||
export EDITOR=nvim
|
export EDITOR=nvim
|
||||||
export SUDO_EDITOR=/usr/bin/nvim
|
export SUDO_EDITOR=/usr/bin/nvim
|
||||||
export XDG_CURRENT_DESKTOP=Sway
|
export XDG_CURRENT_DESKTOP=Sway
|
||||||
|
export XDG_SESSION_DESKTOP=sway
|
||||||
|
export XDG_SESSION_TYPE=wayland
|
||||||
export HOMEBREW_NO_AUTO_UPDATE=true
|
export HOMEBREW_NO_AUTO_UPDATE=true
|
||||||
export ELECTRON_OZONE_PLATFORM_HINT=auto
|
export ELECTRON_OZONE_PLATFORM_HINT=auto
|
||||||
|
|
||||||
|
if command -v dbus-update-activation-environment >/dev/null; then
|
||||||
|
dbus-update-activation-environment XDG_CURRENT_DESKTOP XDG_SESSION_DESKTOP XDG_SESSION_TYPE
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -z $DISPLAY && $TTY = /dev/tty1 ]]; then
|
if [[ -z $DISPLAY && $TTY = /dev/tty1 ]]; then
|
||||||
exec sway
|
exec sway
|
||||||
fi
|
fi
|
||||||
|
|||||||
1
.zshrc
1
.zshrc
@ -31,6 +31,7 @@ alias toggle_vpn='sudo toggle_vpn'
|
|||||||
alias rr='ranger'
|
alias rr='ranger'
|
||||||
|
|
||||||
# naviagtion aliases
|
# naviagtion aliases
|
||||||
|
alias masters='cd /home/nikita/Documents/woopvault/University/masters/indicators_monitoring'
|
||||||
alias dots='cd ~/dotfiles'
|
alias dots='cd ~/dotfiles'
|
||||||
alias notes='cd ~/Documents/woopvault/'
|
alias notes='cd ~/Documents/woopvault/'
|
||||||
alias work='cd ~/Code/maxim/'
|
alias work='cd ~/Code/maxim/'
|
||||||
|
|||||||
Reference in New Issue
Block a user