Compare commits
No commits in common. "9bb980756bed448db107a2c0dfe01af042681269" and "a6b4364dac67c98bf651fe7f0c00486946046133" have entirely different histories.
9bb980756b
...
a6b4364dac
|
@ -67,7 +67,6 @@ with lib; {
|
||||||
xbindkeys
|
xbindkeys
|
||||||
clipmenu
|
clipmenu
|
||||||
flameshot
|
flameshot
|
||||||
xclip
|
|
||||||
]
|
]
|
||||||
++ (with unstable; []);
|
++ (with unstable; []);
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,6 +6,11 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home-manager.users.${vars.user} = {
|
home-manager.users.${vars.user} = {
|
||||||
|
home.file.".ssh/allowed_signers".text = "* ${builtins.readFile ../../rsc/config/git/git.pub}";
|
||||||
|
home.file.".ssh/git.pub" = {
|
||||||
|
source = ../../rsc/config/git/git.pub;
|
||||||
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "GHOSCHT";
|
userName = "GHOSCHT";
|
||||||
|
|
|
@ -5,10 +5,6 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home-manager.users.${vars.user} = {
|
home-manager.users.${vars.user} = {
|
||||||
home.file."~/.config/zsh/.p10k.zsh" = {
|
|
||||||
source = ../../rsc/config/zsh/.p10k.zsh;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autocd = true;
|
autocd = true;
|
||||||
|
@ -24,8 +20,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
nix-your-shell zsh | source /dev/stdin
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
zplug = {
|
zplug = {
|
||||||
|
|
|
@ -160,7 +160,7 @@ local function set_wallpaper(s)
|
||||||
if type(wallpaper) == "function" then
|
if type(wallpaper) == "function" then
|
||||||
wallpaper = wallpaper(s)
|
wallpaper = wallpaper(s)
|
||||||
end
|
end
|
||||||
gears.wallpaper.centered(wallpaper, s)
|
gears.wallpaper.maximized(wallpaper, s, true)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
|
||||||
local theme = {}
|
local theme = {}
|
||||||
theme.dir = os.getenv("HOME") .. "/.config/awesome/"
|
theme.dir = os.getenv("HOME") .. "/.config/awesome/"
|
||||||
theme.wallpaper_dir = os.getenv("HOME") .. "/.wallpapers/"
|
theme.wallpaper_dir = os.getenv("HOME") .. "/.wallpapers/"
|
||||||
theme.wallpaper = theme.wallpaper_dir .. "/cyberpunk-ship-dock.jpg"
|
theme.wallpaper = theme.wallpaper_dir .. "/city.jpg"
|
||||||
theme.font = "JetBrainsMono Nerd Font 9"
|
theme.font = "JetBrainsMono Nerd Font 9"
|
||||||
theme.fg_normal = colors.text
|
theme.fg_normal = colors.text
|
||||||
theme.fg_focus = colors.teal
|
theme.fg_focus = colors.teal
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
local cmp = require "cmp"
|
local cmp = require "cmp"
|
||||||
|
|
||||||
local plugins = {
|
local plugins = {
|
||||||
{'akinsho/git-conflict.nvim', version = "*", config = true, lazy = false,},
|
|
||||||
{
|
{
|
||||||
'numToStr/Comment.nvim',
|
'numToStr/Comment.nvim',
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
@ -44,19 +43,19 @@ local plugins = {
|
||||||
require("nvim-dap-virtual-text").setup()
|
require("nvim-dap-virtual-text").setup()
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
-- {
|
{
|
||||||
-- "hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
-- opts = function()
|
opts = function()
|
||||||
-- local M = require "plugins.configs.cmp"
|
local M = require "plugins.configs.cmp"
|
||||||
-- M.completion.completeopt = "menu,menuone,noselect"
|
M.completion.completeopt = "menu,menuone,noselect"
|
||||||
-- M.mapping["<CR>"] = cmp.mapping.confirm {
|
M.mapping["<CR>"] = cmp.mapping.confirm {
|
||||||
-- behavior = cmp.ConfirmBehavior.Insert,
|
behavior = cmp.ConfirmBehavior.Insert,
|
||||||
-- select = false,
|
select = false,
|
||||||
-- }
|
}
|
||||||
-- table.insert(M.sources, {name = "crates"})
|
table.insert(M.sources, {name = "crates"})
|
||||||
-- return M
|
return M
|
||||||
-- end,
|
end,
|
||||||
-- },
|
},
|
||||||
{
|
{
|
||||||
"m4xshen/hardtime.nvim",
|
"m4xshen/hardtime.nvim",
|
||||||
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
||||||
|
|
Before Width: | Height: | Size: 190 KiB |
Before Width: | Height: | Size: 3.7 MiB |
Before Width: | Height: | Size: 740 KiB |
Before Width: | Height: | Size: 2.2 MiB |
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 4.3 MiB |
Before Width: | Height: | Size: 220 KiB |
Before Width: | Height: | Size: 248 KiB |
Before Width: | Height: | Size: 499 KiB |
Before Width: | Height: | Size: 417 KiB |
Before Width: | Height: | Size: 740 KiB |
Before Width: | Height: | Size: 386 KiB |
Before Width: | Height: | Size: 3.8 MiB |
Before Width: | Height: | Size: 539 KiB |
Before Width: | Height: | Size: 3.3 MiB |