diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml new file mode 100644 index 0000000..2d66c41 --- /dev/null +++ b/alacritty/alacritty.toml @@ -0,0 +1,39 @@ +live_config_reload = true + +[colors] +draw_bold_text_with_bright_colors = true + +[colors.bright] +black = "0x928374" +blue = "0x83a598" +cyan = "0x8ec07c" +green = "0xb8bb26" +magenta = "0xd3869b" +red = "0xfb4934" +white = "0xebdbb2" +yellow = "0xfabd2f" + +[colors.normal] +black = "0x282828" +blue = "0x458588" +cyan = "0x689d6a" +green = "0x98971a" +magenta = "0xb16286" +red = "0xcc241d" +white = "0xa89984" +yellow = "0xd79921" + +[colors.primary] +background = "0x282828" +foreground = "0xebdbb2" + +[font] +normal = { family = "0xProto Nerd Font", style = "Regular" } +size = 10.5 + +[scrolling] +history = 10000 + +[selection] +save_to_clipboard = true +semantic_escape_chars = ",│`|:\"' ()[]{}<>\t" diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml deleted file mode 100644 index d7415aa..0000000 --- a/alacritty/alacritty.yml +++ /dev/null @@ -1,96 +0,0 @@ - -window: - # Allow terminal applications to change Alacritty's window title. - dynamic_title: false - decorations: "none" - # Spread additional padding evenly around the terminal content. - dynamic_padding: true - -scrolling: - # Maximum number of lines in the scrollback buffer. - # Specifying '0' will disable scrolling. - history: 10000 - # Scrolling distance multiplier. - multiplier: 3 - -# Font configuration -font: - # Normal (roman) font face - normal: - # Font family - # - # Default: - # - (macOS) Menlo - # - (Linux/BSD) monospace - # - (Windows) Consolas - family: JetBrainsMonoNL Nerd Font - - # Point size - size: 10.5 - -# If `true`, bold text is drawn using the bright color variants. -draw_bold_text_with_bright_colors: true - - -selection: - # This string contains all characters that are used as separators for - # "semantic words" in Alacritty. - semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" - - # When set to `true`, selected text will be copied to the primary clipboard. - save_to_clipboard: true - -cursor: - # Cursor style - #style: - # Cursor shape - # - # Values for `shape`: - # - ▇ Block - # - _ Underline - # - | Beam - shape: Block - - # Cursor blinking state - # - # Values for `blinking`: - # - Never: Prevent the cursor from ever blinking - # - Off: Disable blinking by default - # - On: Enable blinking by default - # - Always: Force the cursor to always blink - blinking: on - - -# Live config reload (changes require restart) -live_config_reload: true - -# Colors (Gruvbox dark) -colors: - # Default colors - primary: - # hard contrast: background = '0x1d2021' - background: '0x282828' - # soft contrast: background = '0x32302f' - foreground: '0xebdbb2' - - # Normal colors - normal: - black: '0x282828' - red: '0xcc241d' - green: '0x98971a' - yellow: '0xd79921' - blue: '0x458588' - magenta: '0xb16286' - cyan: '0x689d6a' - white: '0xa89984' - - # Bright colors - bright: - black: '0x928374' - red: '0xfb4934' - green: '0xb8bb26' - yellow: '0xfabd2f' - blue: '0x83a598' - magenta: '0xd3869b' - cyan: '0x8ec07c' - white: '0xebdbb2' diff --git a/bashrc b/bashrc index 3e6dc62..730dd30 100644 --- a/bashrc +++ b/bashrc @@ -17,4 +17,5 @@ PS1="${USER_NAME}@${HOST_NAME}:${DIR}${GIT_BRANCH}\n> " alias xfreerdp='xfreerdp +clipboard /dynamic-resolution' +alias ssh='ssh -XC' diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 8a4a8a6..284430a 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -8,7 +8,7 @@ "friendly-snippets": { "branch": "main", "commit": "dbd45e9ba76d535e4cba88afa1b7aa43bb765336" }, "gruvbox.nvim": { "branch": "main", "commit": "6e4027ae957cddf7b193adfaec4a8f9e03b4555f" }, "harpoon": { "branch": "master", "commit": "ccae1b9bec717ae284906b0bf83d720e59d12b91" }, - "lazy.nvim": { "branch": "main", "commit": "aedcd79811d491b60d0a6577a9c1701063c2a609" }, + "lazy.nvim": { "branch": "main", "commit": "83493db50a434a4c5c648faf41e2ead80f96e478" }, "lsp-zero.nvim": { "branch": "v2.x", "commit": "9a686513eaaa13d737d0fec8956a18268ead8b29" }, "lualine.nvim": { "branch": "master", "commit": "7d131a8d3ba5016229e8a1d08bf8782acea98852" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "60f6805b12a12e8a912aeb2f975dec1794a8994e" }, diff --git a/nvim/lua/plugins/neorg.lua b/nvim/lua/plugins/neorg.lua index 7d8dbca..dd807a3 100644 --- a/nvim/lua/plugins/neorg.lua +++ b/nvim/lua/plugins/neorg.lua @@ -6,16 +6,21 @@ return { require("neorg").setup { load = { ["core.defaults"] = {}, -- Loads default behaviour - ["core.summary"] = {}, ["core.concealer"] = {}, -- Adds pretty icons to your documents - ["core.dirman"] = { -- Manages Neorg workspaces + ["core.summary"] = {}, + ["core.tempus"] = {}, + ["core.dirman"] = { config = { - workspaces = { - work = "/mnt/c/Users/Josue/Documents/SLAC/notes/" + workspaces = { + work = "~/Documents/Slac/" }, }, - }, + }, -- Manages Neorg workspaces + ["core.fs"] = {}, + ["core.integrations.treesitter"] = {}, + ["core.ui.calendar"] = {}, }, + } end } diff --git a/nvim/settings.vim b/nvim/settings.vim index f696981..f1f5d83 100644 --- a/nvim/settings.vim +++ b/nvim/settings.vim @@ -92,8 +92,8 @@ set ruler set wrap set showbreak=↳\ \ -set textwidth=80 -set colorcolumn=-2 +set textwidth=79 +set colorcolumn=81 set autoindent set smartindent diff --git a/tmux/tmux.conf b/tmux/tmux.conf index db53f15..dbd33e8 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -39,4 +39,4 @@ bind c new-window -c "#{pane_current_path}" bind '"' split-window -v -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" - +set -g update-environment "DISPLAY"