Compare commits

..

No commits in common. 'ab1a960c0020218baad9c0a23b62eb908c15d661' and '67a5e00624d3ba4e92c87872f92c9142c7ba64a8' have entirely different histories.

  1. 2
      alacritty/.config/alacritty/alacritty.yml
  2. 4
      leftwm/.config/leftwm/autostart.sh
  3. 23
      leftwm/.config/leftwm/config.ron
  4. 4
      nvchad/.config/nvim/lua/custom/chadrc.lua
  5. 10
      nvchad/.config/nvim/lua/custom/init.lua
  6. 2
      nvchad/.config/nvim/lua/custom/plugins.lua
  7. 2
      oh-my-zsh/.oh-my-zsh/aliases.sh

@ -51,7 +51,7 @@ font:
style: Bold Italic
# Point size
size: 12
size: 7
# If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true

@ -14,10 +14,10 @@ fi
setxkbmap se &
# Display settings
sh $HOME/.screenlayout/layout.sh &
$HOME/.screenlayout/layout.sh &
# Compositor
sh $HOME/.config/picom/launch &
$HOME/.config/picom/launch &
# Background
nitrogen --restore &

@ -4,26 +4,19 @@
mousekey: "Mod4",
workspaces: [
(
output: "eDP-1",
output: "DP-4",
y: 0,
x: 0,
height: 1080,
width: 1920,
),
// (
// output: "eDP-1",
// y: 1440,
// x: 320,
// height: 1080,
// width: 1920,
// ),
// (
// output: "DP-1",
// y: 0,
// x: 0,
// height: 1440,
// width: 2560,
// )
(
output: "HDMI-0",
y: 0,
x: 1920,
height: 1080,
width: 1920,
)
],
tags: [
"1",

@ -5,8 +5,8 @@ local M = {}
local highlights = require "custom.highlights"
M.ui = {
theme = "ayu_dark",
theme_toggle = { "ayu_dark", "ayu_dark_light" },
theme = "tomorrow_night",
theme_toggle = { "tomorrow_night", "gruvbox_light" },
hl_override = highlights.override,
hl_add = highlights.add,

@ -5,8 +5,8 @@
-- pattern = "*",
-- command = "tabdo wincmd =",
-- })
-- vim.filetype.add({
-- extension = {
-- mdx = 'mdx'
-- }
-- })
vim.filetype.add({
extension = {
mdx = 'mdx'
}
})

@ -71,7 +71,7 @@ local plugins = {
require("nvim-treesitter.configs").setup(opts)
-- use markdown parser for mdx files
-- vim.treesitter.language.register("mdx", "markdown", "tsx")
vim.treesitter.language.register("mdx", "markdown", "tsx")
end,
},

@ -35,7 +35,7 @@ cd_gitroot() {
alias cr="cd_gitroot"
alias dev="cd $HOME/Projects/almtech/exa/"
alias dev="cd $HOME/Projects/almtech/ingenuity/"
alias dc="docker-compose"

Loading…
Cancel
Save