-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
820 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ install: | |
- "coreutils" | ||
- "doctl" | ||
- "exa" | ||
- "fd" | ||
- "ffmpeg" | ||
- "findutils" | ||
- "fswatch" | ||
|
@@ -33,6 +34,7 @@ install: | |
- "gnu-sed" | ||
- "go" | ||
- "golangci-lint" | ||
- "howdoi" | ||
- "hr" | ||
- "htmlq" | ||
- "htop" | ||
|
@@ -66,6 +68,7 @@ install: | |
- "terraform" | ||
- "tldr" | ||
- "tmux" | ||
- "tpm" | ||
- "tree" | ||
- "unison" | ||
- "vim" | ||
|
@@ -150,7 +153,6 @@ install: | |
- "monitorcontrol" | ||
- "moonlight" | ||
- "nordvpn" | ||
- "numi" | ||
- "obs" | ||
- "oracle-jdk" | ||
- "parsec" | ||
|
@@ -176,10 +178,13 @@ install: | |
- "brew link --overwrite awscli" | ||
- "brew link --overwrite go" | ||
- "brew link --overwrite [email protected]" | ||
- "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y" | ||
- "echo \"y\" | $(brew --prefix)/opt/fzf/install" | ||
- "git lfs install" | ||
- "go install github.com/oklog/ulid/v2/cmd/ulid@latest" | ||
- "mkdir ~/.nvm" | ||
- "mkdir -p ~/dotfiles/logs/crontab/" | ||
- "crontab ~/dotfiles/crontab" | ||
pyenv: | ||
global: | ||
version: 3.11.1 | ||
|
@@ -196,6 +201,7 @@ install: | |
global: | ||
packages: | ||
- "neovim" | ||
- "prettier" | ||
- "serverless" | ||
mas: | ||
apps: | ||
|
@@ -290,11 +296,6 @@ config: | |
to: | ||
absolute_path: "~/.vimrc" | ||
|
||
- from: | ||
relative_path: ".zsh_history" | ||
to: | ||
absolute_path: "~/.zsh_history" | ||
|
||
- from: | ||
relative_path: ".zshrc" | ||
to: | ||
|
@@ -304,6 +305,11 @@ config: | |
relative_path: "starship.toml" | ||
to: | ||
absolute_path: "~/.config/starship.toml" | ||
|
||
- from: | ||
relative_path: "tmux.conf" | ||
to: | ||
absolute_path: "~/.config/tmux/tmux.conf" | ||
dockutil: | ||
_before: | ||
reset: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* * * * * echo abc > ~/dotfiles/logs/crontab/$(date +%Y.%m.%d.%H.%M.%S).mas-update.log 2>&1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
set-option -sa terminal-overrides ",xterm*:Tc" | ||
set -g mouse on | ||
|
||
unbind C-b | ||
set -g prefix C-Space | ||
bind C-Space send-prefix | ||
|
||
# Vim style pane selection | ||
bind h select-pane -L | ||
bind j select-pane -D | ||
bind k select-pane -U | ||
bind l select-pane -R | ||
|
||
# Start windows and panes at 1, not 0 | ||
set -g base-index 1 | ||
set -g pane-base-index 1 | ||
set-window-option -g pane-base-index 1 | ||
set-option -g renumber-windows on | ||
|
||
# Use Alt-arrow keys without prefix key to switch panes | ||
bind -n M-Left select-pane -L | ||
bind -n M-Right select-pane -R | ||
bind -n M-Up select-pane -U | ||
bind -n M-Down select-pane -D | ||
|
||
# Shift arrow to switch windows | ||
bind -n S-Left previous-window | ||
bind -n S-Right next-window | ||
|
||
# Shift Alt vim keys to switch windows | ||
bind -n M-H previous-window | ||
bind -n M-L next-window | ||
|
||
set -g @catppuccin_flavour 'mocha' | ||
|
||
set -g @plugin 'tmux-plugins/tpm' | ||
set -g @plugin 'tmux-plugins/tmux-sensible' | ||
set -g @plugin 'christoomey/vim-tmux-navigator' | ||
set -g @plugin 'dreamsofcode-io/catppuccin-tmux' | ||
set -g @plugin 'tmux-plugins/tmux-yank' | ||
|
||
run "/opt/homebrew/opt/tpm/share/tpm/tpm" | ||
|
||
# set vi-mode | ||
set-window-option -g mode-keys vi | ||
# keybindings | ||
bind-key -T copy-mode-vi v send-keys -X begin-selection | ||
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle | ||
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel | ||
|
||
bind '"' split-window -v -c "#{pane_current_path}" | ||
bind % split-window -h -c "#{pane_current_path}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
display: | ||
empty-diff: true | ||
error: true | ||
new: true | ||
unchanged: false | ||
job_defaults: | ||
all: {} | ||
browser: {} | ||
shell: {} | ||
url: {} | ||
report: | ||
email: | ||
enabled: true | ||
subject: '[AIMA] {count} changes: {jobs}' | ||
from: [email protected] | ||
to: [email protected] | ||
method: smtp | ||
smtp: | ||
host: smtp.gmail.com | ||
auth: true | ||
port: 587 | ||
starttls: true | ||
discord: | ||
colored: true | ||
embed: false | ||
enabled: false | ||
max_message_length: 2000 | ||
subject: '{count} changes: {jobs}' | ||
webhook_url: '' | ||
html: | ||
diff: unified | ||
separate: false | ||
ifttt: | ||
enabled: false | ||
event: '' | ||
key: '' | ||
mailgun: | ||
api_key: '' | ||
domain: '' | ||
enabled: false | ||
from_mail: '' | ||
from_name: '' | ||
region: us | ||
subject: '{count} changes: {jobs}' | ||
to: '' | ||
markdown: | ||
details: true | ||
footer: true | ||
minimal: false | ||
separate: false | ||
matrix: | ||
access_token: '' | ||
enabled: false | ||
homeserver: '' | ||
room_id: '' | ||
mattermost: | ||
enabled: false | ||
max_message_length: 40000 | ||
webhook_url: '' | ||
prowl: | ||
api_key: '' | ||
application: '' | ||
enabled: false | ||
priority: 0 | ||
subject: '{count} changes: {jobs}' | ||
pushbullet: | ||
api_key: '' | ||
enabled: false | ||
pushover: | ||
app: '' | ||
device: null | ||
enabled: false | ||
priority: normal | ||
sound: spacealarm | ||
user: '' | ||
shell: | ||
command: '' | ||
enabled: false | ||
ignore_stderr: false | ||
ignore_stdout: true | ||
slack: | ||
enabled: false | ||
max_message_length: 40000 | ||
webhook_url: '' | ||
stdout: | ||
color: true | ||
enabled: true | ||
telegram: | ||
bot_token: '' | ||
chat_id: '' | ||
enabled: false | ||
monospace: false | ||
silent: false | ||
text: | ||
details: true | ||
footer: true | ||
line_length: 75 | ||
minimal: false | ||
separate: false | ||
xmpp: | ||
enabled: false | ||
recipient: '' | ||
sender: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
name: "Home" | ||
url: "https://aima.gov.pt/pt/" | ||
treat_new_as_changed: true | ||
--- | ||
name: "Viver" | ||
url: "https://aima.gov.pt/pt/viver" | ||
treat_new_as_changed: true | ||
--- | ||
name: "Estudar" | ||
url: "https://aima.gov.pt/pt/estudar" | ||
treat_new_as_changed: true | ||
--- | ||
name: "Trabalhar" | ||
url: "https://aima.gov.pt/pt/trabalhar" | ||
treat_new_as_changed: true | ||
--- | ||
name: "Serviços" | ||
url: "https://aima.gov.pt/pt/a-aima/servicos" | ||
treat_new_as_changed: true | ||
--- | ||
name: "Lojas" | ||
url: "https://aima.gov.pt/pt/a-aima/servicos/lojas-aima" | ||
treat_new_as_changed: true | ||
--- | ||
name: "A AIMA" | ||
url: "https://aima.gov.pt/pt/a-aima" | ||
treat_new_as_changed: true | ||
--- | ||
name: "Notícias" | ||
url: "https://aima.gov.pt/pt/noticias" | ||
treat_new_as_changed: true | ||
--- |
Oops, something went wrong.