summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/aliasrc2
-rw-r--r--.config/nvim/init.vim134
-rw-r--r--LICENSE21
-rw-r--r--README.md2
-rw-r--r--etc/X11/xorg.conf.d/00-keyboard.conf8
-rw-r--r--etc/X11/xorg.conf.d/50-mouse-acceleration.conf14
-rw-r--r--etc/fstab24
-rw-r--r--etc/tmpfiles.d/media.conf5
-rw-r--r--etc/udev/rules.d/99-udisks2.rules5
-rw-r--r--installedpkgs127
-rw-r--r--installedpkgswv127
11 files changed, 69 insertions, 400 deletions
diff --git a/.config/aliasrc b/.config/aliasrc
index 8dd35d0..e217c4d 100644
--- a/.config/aliasrc
+++ b/.config/aliasrc
@@ -14,5 +14,7 @@ alias lt="ls -TL 6"
alias grep="grep --color=auto"
alias diff="diff --color=auto"
+alias dots="/usr/bin/git --git-dir=$HOME/.dots/ --work-tree=$HOME"
+
# TexLive Manager fix as described in https://wiki.archlinux.org/index.php/TeX_Live
alias tlmgr="$TEXMFDIST/scripts/texlive/tlmgr.pl --usermode"
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index dbbc878..ce104e0 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -15,72 +15,72 @@ set showcmd
" unlet autoload_plug_path
""---Loads plugins---""
- call plug#begin('~/.config/nvim/plugged')
- " Color schemes
- Plug 'altercation/vim-colors-solarized'
- Plug 'dracula/vim'
-
- " Other
- Plug 'mboughaba/i3config.vim'
- Plug 'junegunn/goyo.vim'
- Plug 'preservim/nerdtree'
- let g:NERDTreeShowHidden=1
- autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
-
- "Airline
- Plug 'vim-airline/vim-airline'
- let g:airline_powerline_fonts=1
- Plug 'vim-airline/vim-airline-themes'
- let g:airline_theme='dracula'
-
- " Git
- Plug 'Xuyuanp/nerdtree-git-plugin'
- Plug 'mhinz/vim-signify'
- set updatetime=100
-
- "Auto completion
- Plug 'Valloric/YouCompleteMe'
- let g:ycm_autoclose_preview_window_after_completion=1
-
- " TeX
- Plug 'lervag/vimtex'
- let g:tex_flavor='latex'
- let g:vimtex_view_method=$READER
- let g:vimtex_quickfix_mode=0
- Plug 'KeitaNakamura/tex-conceal.vim'
- set conceallevel=2
- let g:tex_conceal="abdgm"
- " Markdown/pandoc
- Plug 'vim-pandoc/vim-pandoc'
- Plug 'vim-pandoc/vim-pandoc-syntax'
-
- " Python
- Plug 'tmhedberg/SimpylFold'
- let g:SympylFold_docstring_preview=1
- Plug 'vim-scripts/indentpython.vim'
- " Plug 'jmcantrell/vim-virtualenv'
- " Plug 'Yggdroot/indentLine'
- Plug 'nvie/vim-flake8'
-
- " Java
- Plug 'uiiaoo/java-syntax.vim'
- " If variable highlighting should be disabled
- " highlight link JavaIdentifier NONE
-
- " Syntax
- Plug 'vim-syntastic/syntastic'
- set statusline+=%#warningmsg#
- set statusline+=%{SyntasticStatuslineFlag()}
- set statusline+=%*
- let g:syntastic_always_populate_loc_list=1
- let g:syntastic_auto_loc_list=1
- let g:syntastic_check_on_open=1
- let g:syntastic_check_on_wq=0
- let g:syntastic_tex_checkers=['chktex']
- " let g:syntastic_tex_lacheck_quiet_messages = {'regex': '\Vpossible unwanted space at'}
- let g:syntastic_tex_chktex_quiet_messages = {'level': 'warnings'}
-
- call plug#end()
+" call plug#begin('~/.config/nvim/plugged')
+" " Color schemes
+" Plug 'altercation/vim-colors-solarized'
+" Plug 'dracula/vim'
+"
+" " Other
+" Plug 'mboughaba/i3config.vim'
+" Plug 'junegunn/goyo.vim'
+" Plug 'preservim/nerdtree'
+" let g:NERDTreeShowHidden=1
+" autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
+"
+" "Airline
+" Plug 'vim-airline/vim-airline'
+" let g:airline_powerline_fonts=1
+" Plug 'vim-airline/vim-airline-themes'
+" let g:airline_theme='dracula'
+"
+" " Git
+" Plug 'Xuyuanp/nerdtree-git-plugin'
+" Plug 'mhinz/vim-signify'
+" set updatetime=100
+"
+" "Auto completion
+" Plug 'Valloric/YouCompleteMe'
+" let g:ycm_autoclose_preview_window_after_completion=1
+"
+" " TeX
+" Plug 'lervag/vimtex'
+" let g:tex_flavor='latex'
+" let g:vimtex_view_method=$READER
+" let g:vimtex_quickfix_mode=0
+" Plug 'KeitaNakamura/tex-conceal.vim'
+" set conceallevel=2
+" let g:tex_conceal="abdgm"
+" " Markdown/pandoc
+" Plug 'vim-pandoc/vim-pandoc'
+" Plug 'vim-pandoc/vim-pandoc-syntax'
+"
+" " Python
+" Plug 'tmhedberg/SimpylFold'
+" let g:SympylFold_docstring_preview=1
+" Plug 'vim-scripts/indentpython.vim'
+" " Plug 'jmcantrell/vim-virtualenv'
+" " Plug 'Yggdroot/indentLine'
+" Plug 'nvie/vim-flake8'
+"
+" " Java
+" Plug 'uiiaoo/java-syntax.vim'
+" " If variable highlighting should be disabled
+" " highlight link JavaIdentifier NONE
+"
+" " Syntax
+" Plug 'vim-syntastic/syntastic'
+" set statusline+=%#warningmsg#
+" set statusline+=%{SyntasticStatuslineFlag()}
+" set statusline+=%*
+" let g:syntastic_always_populate_loc_list=1
+" let g:syntastic_auto_loc_list=1
+" let g:syntastic_check_on_open=1
+" let g:syntastic_check_on_wq=0
+" let g:syntastic_tex_checkers=['chktex']
+" " let g:syntastic_tex_lacheck_quiet_messages = {'regex': '\Vpossible unwanted space at'}
+" let g:syntastic_tex_chktex_quiet_messages = {'level': 'warnings'}
+"
+" call plug#end()
"" Commands for plug.
" PlugInstall [name ...] [#threads] Install plugins
" PlugUpdate [name ...] [#threads] Install or update plugins
@@ -93,7 +93,7 @@ set showcmd
""---Basic configuration---""
syntax enable
set background=dark
- colorscheme dracula
+ " colorscheme dracula
" Just so alacritty can use transparency.
hi Normal ctermbg=NONE
set encoding=utf-8
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 29b40ef..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2020 David Luevano Alvarado
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/README.md b/README.md
deleted file mode 100644
index 9d821e3..0000000
--- a/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# .dots
-My personal dotfiles.
diff --git a/etc/X11/xorg.conf.d/00-keyboard.conf b/etc/X11/xorg.conf.d/00-keyboard.conf
deleted file mode 100644
index a44ff3c..0000000
--- a/etc/X11/xorg.conf.d/00-keyboard.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-# Written by systemd-localed(8), read by systemd-localed and Xorg. It's
-# probably wise not to edit this file manually. Use localectl(1) to
-# instruct systemd-localed to update it.
-Section "InputClass"
- Identifier "system-keyboard"
- MatchIsKeyboard "on"
- Option "XkbLayout" "latam"
-EndSection
diff --git a/etc/X11/xorg.conf.d/50-mouse-acceleration.conf b/etc/X11/xorg.conf.d/50-mouse-acceleration.conf
deleted file mode 100644
index 38498b1..0000000
--- a/etc/X11/xorg.conf.d/50-mouse-acceleration.conf
+++ /dev/null
@@ -1,14 +0,0 @@
-# Disable mouse acceleration systemwide.
-# InputClass applies on all (in this case) 'pointers' as explained in
-# https://fedoraproject.org/wiki/Input_device_configuration#InputClasses.
-# Actual configuration retrieved from
-# https://fedoraproject.org/wiki/Input_device_configuration#InputClasses.
-
-Section "InputClass"
- Identifier "system-mouse"
- Driver "libinput"
- MatchIsPointer "yes"
- Option "AccelProfile" "flat"
- Option "AccelSpeed" "0"
- Option "Sensitivity" "2.0"
-EndSection
diff --git a/etc/fstab b/etc/fstab
deleted file mode 100644
index abe2a50..0000000
--- a/etc/fstab
+++ /dev/null
@@ -1,24 +0,0 @@
-# Static information about the filesystems.
-# See fstab(5) for details.
-
-# <file system> <dir> <type> <options> <dump> <pass>
-# /dev/sda6
-UUID=a6cc857f-8978-42ad-a59b-15e5106a9ed5 / ext4 rw,relatime 0 1
-
-# /dev/sda7
-UUID=80268c0a-0e07-44e5-9b7e-e67c909b5f3d /home ext4 rw,relatime 0 2
-
-# /dev/sda5
-UUID=6F52-0E1D /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 2
-
-# /dev/sda4 # Windows partition (main)
-UUID=8A9C4E009C4DE773 /media/Windows ntfs uid=luevano,gid=wheel,dmask=0022,fmask=0133,nosuid,dev,windows_names,auto 0 2
-
-# /dev/sdb2 # Storage
-UUID=445A1DB95A1DA8A6 /media/Storage ntfs uid=luevano,gid=wheel,dmask=0022,fmask=0133,nosuid,dev,windows_names,auto 0 2
-
-# /dev/sdc2 # Storage2
-UUID=22F4424EF442247F /media/Storage2 ntfs uid=luevano,gid=wheel,dmask=0022,fmask=0133,nosuid,dev,windows_names,auto 0 2
-
-# /dev/sdd2 # Storage3
-UUID=681C5DE81C5DB234 /media/Storage3 ntfs uid=luevano,gid=wheel,dmask=0022,fmask=0133,nosuid,dev,windows_names,auto 0 2
diff --git a/etc/tmpfiles.d/media.conf b/etc/tmpfiles.d/media.conf
deleted file mode 100644
index db08b4f..0000000
--- a/etc/tmpfiles.d/media.conf
+++ /dev/null
@@ -1,5 +0,0 @@
-# As seen in https://wiki.archlinux.org/index.php/Udisks and
-# ttps://wiki.archlinux.org/index.php/Systemd#systemd-tmpfiles_-_temporary_files.
-
-# Path Mode UID GID Age Argument
-D /media 0755 root root 0 -
diff --git a/etc/udev/rules.d/99-udisks2.rules b/etc/udev/rules.d/99-udisks2.rules
deleted file mode 100644
index 996e434..0000000
--- a/etc/udev/rules.d/99-udisks2.rules
+++ /dev/null
@@ -1,5 +0,0 @@
-# UDISKS_FILESYSTEM_SHARED
-# ==1: mount filesystem to a shared directory (/media/VolumeName)
-# ==0: mount filesystem to a private directory (/run/media/$USER/VolumeName)
-# See udisks(8)
-ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{UDISKS_FILESYSTEM_SHARED}="1"
diff --git a/installedpkgs b/installedpkgs
deleted file mode 100644
index 0b0f7a2..0000000
--- a/installedpkgs
+++ /dev/null
@@ -1,127 +0,0 @@
-alacritty
-alsa-utils
-atool
-autoconf
-automake
-base
-biber
-binutils
-bison
-cmake
-cuda
-cudnn
-dmenu
-dunst
-efibootmgr
-fakeroot
-feh
-file
-findutils
-flake8
-flameshot
-flex
-gawk
-gcc
-gettext
-git
-google-chrome
-grep
-groff
-grub
-gzip
-highlight
-htop
-i3-gaps
-i3blocks
-jdk8-openjdk
-libtool
-lightdm
-lightdm-gtk-greeter
-linux
-linux-firmware
-lostfiles
-m4
-make
-man-db
-man-pages
-mlocate
-mono
-neofetch
-neovim
-network-manager-applet
-networkmanager
-ninja
-nmap
-nodejs
-noto-fonts
-npm
-ntfs-3g
-nvidia
-nvidia-settings
-os-prober
-p7zip
-pacman
-patch
-pavucontrol
-picom
-pipes.sh
-pkgconf
-playerctl
-pulseaudio
-pulseaudio-alsa
-pulseaudio-jack
-python
-python-pandas
-python-pip
-python-pynvim
-python-scipy
-python-tensorflow-opt-cuda
-python2
-python2-pip
-python37
-qbittorrent
-ranger
-sed
-spotify
-sudo
-symlinks
-sysstat
-telegram-desktop
-tensorboard
-texinfo
-texlive-bibtexextra
-texlive-core
-texlive-fontsextra
-texlive-formatsextra
-texlive-games
-texlive-humanities
-texlive-latexextra
-texlive-music
-texlive-pictures
-texlive-pstricks
-texlive-publishers
-texlive-science
-ttf-font-awesome
-udiskie
-udisks2
-unrar
-unzip
-vlc
-w3m
-which
-xclip
-xdotool
-xorg-server
-xorg-xinit
-xorg-xrandr
-yad
-yay
-zathura
-zathura-cb
-zathura-djvu
-zathura-pdf-mupdf
-zathura-ps
-zip
-zsh
-zsh-completions
-zsh-syntax-highlighting
diff --git a/installedpkgswv b/installedpkgswv
deleted file mode 100644
index afc8261..0000000
--- a/installedpkgswv
+++ /dev/null
@@ -1,127 +0,0 @@
-alacritty 0.4.1-2
-alsa-utils 1.2.2-1
-atool 0.39.0-6
-autoconf 2.69-7
-automake 1.16.1-2
-base 2-2
-biber 1:2.13-1
-binutils 2.34-1
-bison 3.5.2-1
-cmake 3.16.4-1
-cuda 10.2.89-3
-cudnn 7.6.5.32-3
-dmenu 4.9-1
-dunst 1.4.1-1
-efibootmgr 16-2
-fakeroot 1.24-2
-feh 3.3-2
-file 5.38-3
-findutils 4.7.0-2
-flake8 1:3.7.9-1
-flameshot 0.6.0-3
-flex 2.6.4-3
-gawk 5.0.1-2
-gcc 9.2.1+20200130-2
-gettext 0.20.1-3
-git 2.25.1-1
-google-chrome 80.0.3987.116-1
-grep 3.4-1
-groff 1.22.4-3
-grub 2:2.04-5
-gzip 1.10-3
-highlight 3.55-1
-htop 2.2.0-3
-i3-gaps 4.18-1
-i3blocks 1.5-3
-jdk8-openjdk 8.u242-1
-libtool 2.4.6+42+gb88cebd5-10
-lightdm 1:1.30.0-2
-lightdm-gtk-greeter 1:2.0.7-1
-linux 5.5.7.arch1-1
-linux-firmware 20200204.b791e15-1
-lostfiles 4.03-1
-m4 1.4.18-3
-make 4.3-1
-man-db 2.9.1-1
-man-pages 5.05-1
-mlocate 0.26.git.20170220-2
-mono 6.4.0.198-1
-neofetch 6.1.0-1
-neovim 0.4.3-2
-network-manager-applet 1.8.24-1
-networkmanager 1.22.8-1
-ninja 1.10.0-1
-nmap 7.80-1
-nodejs 13.9.0-1
-noto-fonts 20190926-4
-npm 6.14.1-1
-ntfs-3g 2017.3.23-4
-nvidia 440.64-1
-nvidia-settings 440.59-1
-os-prober 1.77-1
-p7zip 16.02-5
-pacman 5.2.1-4
-patch 2.7.6-8
-pavucontrol 1:4.0-1
-picom 7.5-3
-pipes.sh 1.3.0-1
-pkgconf 1.6.3-3
-playerctl 2.1.1-1
-pulseaudio 13.0-3
-pulseaudio-alsa 2-5
-pulseaudio-jack 13.0-3
-python 3.8.1-4
-python-pandas 1.0.1-1
-python-pip 19.3.1-1
-python-pynvim 0.4.1-1
-python-scipy 1.4.1-1
-python-tensorflow-opt-cuda 2.1.0-3
-python2 2.7.17-1
-python2-pip 19.3.1-1
-python37 3.7.6-1
-qbittorrent 4.2.1-1
-ranger 1.9.3-1
-sed 4.8-1
-spotify 1:1.1.10.546-3
-sudo 1.8.31-1
-symlinks 1.4.3-3
-sysstat 12.3.1-1
-telegram-desktop 1.9.14-2
-tensorboard 2.1.0-2
-texinfo 6.7-2
-texlive-bibtexextra 2019.52577-1
-texlive-core 2019.52579-1
-texlive-fontsextra 2019.52580-1
-texlive-formatsextra 2019.51280-1
-texlive-games 2019.52525-1
-texlive-humanities 2019.52574-1
-texlive-latexextra 2019.52575-1
-texlive-music 2019.52275-1
-texlive-pictures 2019.52499-1
-texlive-pstricks 2019.52550-1
-texlive-publishers 2019.52538-1
-texlive-science 2019.52582-1
-ttf-font-awesome 5.12.1-1
-udiskie 2.1.0-1
-udisks2 2.8.4-2
-unrar 1:5.9.1-1
-unzip 6.0-13
-vlc 3.0.8-10
-w3m 0.5.3.git20190105-1
-which 2.21-5
-xclip 0.13-2
-xdotool 3.20160805.1-2
-xorg-server 1.20.7-1
-xorg-xinit 1.4.1-1
-xorg-xrandr 1.5.1-1
-yad 5.0-1
-yay 9.4.4-1
-zathura 0.4.5-1
-zathura-cb 0.1.8-1
-zathura-djvu 0.2.9-1
-zathura-pdf-mupdf 0.3.5-2
-zathura-ps 0.2.6-1
-zip 3.0-8
-zsh 5.8-1
-zsh-completions 0.31.0-1
-zsh-syntax-highlighting 0.6.0-1