summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-11-09 16:45:47 +0500
committerpryazha <pryadeiniv@mail.ru>2025-11-09 16:45:47 +0500
commit7a6e80f46a63fe61ddd66045fb65a832596e996c (patch)
treeda435b8cc36421477db8b45b47b8ef12a9c009c7 /.config
parent7a9d877bff6df77d15bb4c45c2f85aceec259b3c (diff)
change alacritty, emacs, and profileHEADmaster
Diffstat (limited to '.config')
-rw-r--r--.config/.Xresources4
-rw-r--r--.config/.emacs13
-rw-r--r--.config/.profile3
-rw-r--r--.config/.vimrc9
-rw-r--r--.config/alacritty/alacritty.toml56
-rw-r--r--.config/mpd.conf5
6 files changed, 26 insertions, 64 deletions
diff --git a/.config/.Xresources b/.config/.Xresources
index 899b99a..3cbd50e 100644
--- a/.config/.Xresources
+++ b/.config/.Xresources
@@ -1,4 +1,6 @@
xterm*background: black
xterm*foreground: white
+; xterm*faceName: FantasqueSansM Nerd Font
+; xterm*faceSize: 16
xterm*font: -*-fixed-medium-*-*-*-18-*-*-*-*-*-iso10646-*
-xterm*geometry: 100x40
+; xterm*geometry: 100x40
diff --git a/.config/.emacs b/.config/.emacs
index 4ac5da8..4e8c00d 100644
--- a/.config/.emacs
+++ b/.config/.emacs
@@ -5,19 +5,22 @@
;; functional
(set-default 'ring-bell-function 'ignore)
-;; (setq c-basic-offset 8)
-;; (setq indent-line-function 'insert-tab)
+(setq c-basic-offset 8)
+(setq indent-line-function 'insert-tab)
(defun hook-c ()
(setq c-set-style "k&r")
(setq indent-tabs-mode nil))
(add-hook 'c-mode-common-hook 'hook-c)
+(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
+
;; keybinds
(keymap-global-set "C-c c" 'compile)
;; visual
(setq inhibit-startup-screen t)
-(set-default 'truncate-lines t)
-(add-to-list 'default-frame-alist '(font . "Iosevka-16"))
-(load-theme 'wombat t)
+;; (set-default 'truncate-lines t)
+(add-to-list 'default-frame-alist '(font . "FantasqueSansM Nerd Font-16"))
+
+(load-theme 'zenburn t)
diff --git a/.config/.profile b/.config/.profile
index 800927f..d32d438 100644
--- a/.config/.profile
+++ b/.config/.profile
@@ -6,3 +6,6 @@ PATH="$HOME/.local/bin:$PATH"
EDITOR='vi'
LOGDIR='~/log'
+
+PLAN9=/home/pryazha/clone/plan9 export PLAN9
+PATH=$PATH:$PLAN9/bin export PATH
diff --git a/.config/.vimrc b/.config/.vimrc
index 8ad26f8..066398e 100644
--- a/.config/.vimrc
+++ b/.config/.vimrc
@@ -1,8 +1,3 @@
-call plug#begin()
-Plug 'junegunn/goyo.vim'
-Plug 'junegunn/fzf.vim'
-call plug#end()
-
"visual
syntax on
let g:netrw_banner=0
@@ -45,7 +40,7 @@ set clipboard+=unnamedplus
set nohlsearch
set incsearch
-"bindings
+"keybinds
let mapleader=","
map <leader>e :Ex<cr>
@@ -53,7 +48,7 @@ map <leader>v :Vex<cr>
map <leader>s :Sex<cr>
map <leader>q :q<cr>
-set makeprg=./build.sh
+set makeprg=./b
map <leader>m :make!<cr>:cope<cr>
map <leader>n :cnext<cr>
map <leader>g :grep!<space>-rn<space><space>.<left><left>''<left>
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml
index 57db335..396364f 100644
--- a/.config/alacritty/alacritty.toml
+++ b/.config/alacritty/alacritty.toml
@@ -1,56 +1,10 @@
[window]
-padding = { x = 4, y = 4 }
+padding = { x = 2, y = 2 }
[font]
-normal = { family = "FantasqueSansM Nerd Font", style = "Regular" }
-size = 15
-
-# [colors.primary]
-# background = '#242829'
-# foreground = '#dcd7d7'
-
-# [colors.normal]
-# black = '#242829'
-# red = '#e6507a'
-# green = '#439085'
-# yellow = '#2e89a5'
-# blue = '#84b8a9'
-# magenta = '#e18d8e'
-# cyan = '#5cadc6'
-# white = '#dcd7d7'
-
-# [colors.bright]
-# black = '#242829'
-# red = '#e6507a'
-# green = '#439085'
-# yellow = '#2e89a5'
-# blue = '#84b8a9'
-# magenta = '#e18d8e'
-# cyan = '#5cadc6'
-# white = '#dcd7d7'
-# Colors (Kanagawa Wave)
-# Source https//github.com/rebelot/kanagawa.nvim
+normal = { family = "FantasqueSansM Nerd Font" }
+size = 11
[colors.primary]
-background = '#242829'
-foreground = '#dcd7d7'
-
-[colors.normal]
-black = '#242829'
-red = '#df2683'
-green = '#13868c'
-yellow = '#fcfcdf'
-blue = '#1a86b9'
-magenta = '#bc7fd2'
-cyan = '#7cc7d6'
-white = '#4a4b4b'
-
-[colors.bright]
-black = '#7b8b99'
-red = '#df2683'
-green = '#13868c'
-yellow = '#fcfcdf'
-blue = '#1a86b9'
-magenta = '#bc7fd2'
-cyan = '#7cc7d6'
-white = '#dcd7d7'
+foreground = "#ffffff"
+background = "#000000"
diff --git a/.config/mpd.conf b/.config/mpd.conf
index fc93a33..5f917ec 100644
--- a/.config/mpd.conf
+++ b/.config/mpd.conf
@@ -5,3 +5,8 @@ state_file "~/.mpd/state"
auto_update "yes"
bind_to_address "127.0.0.1"
restore_paused "yes"
+
+audio_output {
+ type "pipewire"
+ name "pipewire output"
+}