Compare commits

..

4 Commits

  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: 7
size: 12
# 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
$HOME/.screenlayout/layout.sh &
sh $HOME/.screenlayout/layout.sh &
# Compositor
$HOME/.config/picom/launch &
sh $HOME/.config/picom/launch &
# Background
nitrogen --restore &

@ -4,19 +4,26 @@
mousekey: "Mod4",
workspaces: [
(
output: "DP-4",
output: "eDP-1",
y: 0,
x: 0,
height: 1080,
width: 1920,
),
(
output: "HDMI-0",
y: 0,
x: 1920,
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,
// )
],
tags: [
"1",

@ -5,8 +5,8 @@ local M = {}
local highlights = require "custom.highlights"
M.ui = {
theme = "tomorrow_night",
theme_toggle = { "tomorrow_night", "gruvbox_light" },
theme = "ayu_dark",
theme_toggle = { "ayu_dark", "ayu_dark_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/ingenuity/"
alias dev="cd $HOME/Projects/almtech/exa/"
alias dc="docker-compose"

Loading…
Cancel
Save