Compare commits
5 commits
a6b4364dac
...
9bb980756b
Author | SHA1 | Date | |
---|---|---|---|
9bb980756b | |||
a307b26fa4 | |||
37356b7b48 | |||
9b87434ba0 | |||
e8622330ee |
|
@ -67,6 +67,7 @@ with lib; {
|
||||||
xbindkeys
|
xbindkeys
|
||||||
clipmenu
|
clipmenu
|
||||||
flameshot
|
flameshot
|
||||||
|
xclip
|
||||||
]
|
]
|
||||||
++ (with unstable; []);
|
++ (with unstable; []);
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,11 +6,6 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
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,6 +5,10 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
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;
|
||||||
|
@ -20,7 +24,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.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.maximized(wallpaper, s, true)
|
gears.wallpaper.centered(wallpaper, s)
|
||||||
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 .. "/city.jpg"
|
theme.wallpaper = theme.wallpaper_dir .. "/cyberpunk-ship-dock.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,6 +1,7 @@
|
||||||
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,
|
||||||
|
@ -43,19 +44,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" },
|
||||||
|
|
1833
rsc/config/zsh/.p10k.zsh
Normal file
BIN
rsc/wallpaper/abandonned-rocket.jpg
Normal file
After Width: | Height: | Size: 190 KiB |
BIN
rsc/wallpaper/blade-runner.png
Normal file
After Width: | Height: | Size: 3.7 MiB |
BIN
rsc/wallpaper/blood-vines.jpg
Normal file
After Width: | Height: | Size: 740 KiB |
BIN
rsc/wallpaper/cthulu-close.jpg
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
rsc/wallpaper/cyberpunk-buddah.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
rsc/wallpaper/cyberpunk-ship-dock.jpg
Normal file
After Width: | Height: | Size: 4.3 MiB |
BIN
rsc/wallpaper/dune-collector.jpg
Normal file
After Width: | Height: | Size: 220 KiB |
BIN
rsc/wallpaper/dune-intruder.jpg
Normal file
After Width: | Height: | Size: 248 KiB |
BIN
rsc/wallpaper/dune-military.jpg
Normal file
After Width: | Height: | Size: 499 KiB |
BIN
rsc/wallpaper/dune-spaceship.jpg
Normal file
After Width: | Height: | Size: 417 KiB |
BIN
rsc/wallpaper/japanese-swamp.jpg
Normal file
After Width: | Height: | Size: 740 KiB |
BIN
rsc/wallpaper/mando-fett.jpg
Normal file
After Width: | Height: | Size: 386 KiB |
BIN
rsc/wallpaper/nier-automata.jpg
Normal file
After Width: | Height: | Size: 3.8 MiB |
BIN
rsc/wallpaper/stray.jpg
Normal file
After Width: | Height: | Size: 539 KiB |
BIN
rsc/wallpaper/witcher-tree.png
Normal file
After Width: | Height: | Size: 3.3 MiB |