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 style: Bold Italic
# Point size # Point size
size: 7 size: 12
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true

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

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

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

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

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

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

Loading…
Cancel
Save