Skip to content

Commit

Permalink
Just some terminal tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDufus committed Jan 2, 2025
1 parent 1728fac commit dcd0513
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 47 deletions.
18 changes: 14 additions & 4 deletions roles/ghostty/files/config.ini → roles/ghostty/files/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Theme Config
theme = catppuccin-mocha
background = #000000
background-opacity = 0.65
background-blur-radius = 20

# Font
font-size = 15
Expand All @@ -8,18 +11,25 @@ bold-is-bright = true

# Window Config
macos-titlebar-style = hidden
macos-option-as-alt = true
window-decoration = true
window-padding-x = 10
window-padding-y = 10
window-padding-balance = true

# Cursor style
cursor-style = block
cursor-style-blink = true
cursor-invert-fg-bg = true
mouse-hide-while-typing = true

# Clipboard settings
clipboard-read = allow
clipboard-write = allow
copy-on-select = true

# Allow option to work as alt on macos
macos-option-as-alt = true

mouse-hide-while-typing = true
auto-update = check
auto-update-channel = stable

# extras
shell-integration-features = no-cursor
2 changes: 1 addition & 1 deletion roles/ghostty/tasks/MacOSX.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

- name: "👻 Ghossty | Deploy Configuration"
ansible.builtin.copy:
src: config.ini
src: config
dest: "~/Library/Application\ Support/com.mitchellh.ghostty/config"
mode: "0600"
33 changes: 0 additions & 33 deletions roles/git/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,39 +14,6 @@
scope: global
value: zebra

- name: "Git | Set [delta] config"
block:
- name: "Git | Set core.pager"
community.general.git_config:
name: core.pager
scope: global
value: "delta"

- name: "Git | Set delta interactive.diffFilter"
community.general.git_config:
name: delta.interactive.diffFilter
scope: global
value: "delta --color-only --features=interactive"

- name: "Git | Set Delta Negative"
community.general.git_config:
name: delta.negative
scope: global
value: true

- name: "Git | Set Delta Side-by-Side"
community.general.git_config:
name: delta.side-by-side
scope: global
value: true

- name: "Git | Set merge.conflictStyle"
community.general.git_config:
name: merge.conflictStyle
scope: global
value: zdiff3


- name: "Git | Set fetch.prune"
community.general.git_config:
name: fetch.prune
Expand Down
16 changes: 8 additions & 8 deletions roles/neovim/files/lua/plugins/color_scheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ return {
config = function()
require("catppuccin").setup({
flavor = "macchiato", -- latte, frappe, macchiato, mocha
transparent_background = false,
-- color_overrides = {
-- mocha = {
-- base = "#000000",
-- mantle = "#000000",
-- crust = "#000000",
-- },
-- },
transparent_background = true,
color_overrides = {
mocha = {
base = "#000000",
-- mantle = "#000000",
-- crust = "#000000",
},
},
default_integrations = true,
integrations = {
cmp = true,
Expand Down
2 changes: 1 addition & 1 deletion roles/tmux/files/tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ setw -g pane-base-index 1 # Same for panes
set -g renumber-windows on # Re-index windows when a window is closed
set -g history-limit 1000000 # Set history limit to 1000000
set -g mode-keys vi # Set vi mode
set -g status-position top # Set status bar to top
set -g status-position bottom # Set status bar to top
set -g pane-active-border-style 'fg=magenta,bg=default'
set -g pane-border-style 'fg=brightblack,bg=default'
set -g status-interval 1
Expand Down

0 comments on commit dcd0513

Please sign in to comment.