general update

This commit is contained in:
Luddifee 2021-01-09 18:23:31 +01:00
parent eb14df1583
commit 60e0c650e1
3 changed files with 48 additions and 2 deletions

40
.emacs.d/init.el Normal file
View File

@ -0,0 +1,40 @@
;;; init.el -*- lexical-binding: t; -*-
;;
;; Author: Henrik Lissner <henrik@lissner.net>
;; URL: https://github.com/hlissner/doom-emacs
;;
;; ================= =============== =============== ======== ========
;; \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . //
;; ||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\/ . . .||
;; || . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||
;; ||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||
;; || . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\ . . . . ||
;; ||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\_ . .|. .||
;; || . _|| || || || || ||_ . || || . _|| || || || |\ `-_/| . ||
;; ||_-' || .|/ || || \|. || `-_|| ||_-' || .|/ || || | \ / |-_.||
;; || ||_-' || || `-_|| || || ||_-' || || | \ / | `||
;; || `' || || `' || || `' || || | \ / | ||
;; || .===' `===. .==='.`===. .===' /==. | \/ | ||
;; || .==' \_|-_ `===. .===' _|_ `===. .===' _-|/ `== \/ | ||
;; || .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \/ | ||
;; || .==' _-' '-__\._-' '-_./__-' `' |. /| | ||
;; ||.==' _-' `' | /==.||
;; ==' _-' \/ `==
;; \ _-' `-_ /
;; `'' ``'
;;
;; These demons are not part of GNU Emacs.
;;
;;; License: MIT
;; In the strange case that early-init.el wasn't loaded (e.g. you're using
;; Chemacs 1? Or you're loading this file directly?), we do it explicitly:
(unless (boundp 'doom-version)
(load (concat (file-name-directory load-file-name) "early-init")
nil t))
;; And let 'er rip!
(doom-initialize)
;; SET FONT SIZE
(set-face-attribute 'default' nil :height 140)

View File

@ -7,9 +7,15 @@ sh update-pacman-mirrors.sh
sh vim-setup.sh sh vim-setup.sh
sh git-setup.sh sh git-setup.sh
# install python as a dependency for kitty
sudo pacman -S python --noconfirm
# install kitty, i3-gaps, picom, polybar and nitrogen # install kitty, i3-gaps, picom, polybar and nitrogen
sudo pacman -S kitty i3-gaps picom polybar nitrogen --noconfirm sudo pacman -S kitty i3-gaps picom polybar nitrogen --noconfirm
# full system upgrade
sudo pacman -Syu
mkdir ~/.config/kitty ~/.config/i3 ~/.config/picom ~/.config/polybar mkdir ~/.config/kitty ~/.config/i3 ~/.config/picom ~/.config/polybar
cp ../.config/kitty/kitty.conf ~/.config/kitty/kitty.conf cp ../.config/kitty/kitty.conf ~/.config/kitty/kitty.conf

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# install curl, vim and nodejs # install vim, nodejs and npm (dependencies for coc.nvim)
sudo pacman -S vim nodejs --noconfirm sudo pacman -S vim nodejs npm--noconfirm
# setup vim-plug # setup vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \