summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/nvim/init.vim10
-rw-r--r--.config/udiskie/config.yml5
-rw-r--r--.profile2
-rw-r--r--etc/fstab29
4 files changed, 39 insertions, 7 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 7aea348..23a592f 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -15,9 +15,9 @@
""---Loads plugins---""
call plug#begin('~/.config/nvim/plugged')
Plug 'mboughaba/i3config.vim'
-
- " Goyo
Plug 'junegunn/goyo.vim'
+ Plug 'preservim/nerdtree'
+ Plug 'Xuyuanp/nerdtree-git-plugin'
call plug#end()
"" Commands for plug.
" PlugInstall [name ...] [#threads] Install plugins
@@ -29,11 +29,11 @@ call plug#end()
" PlugSnapshot[!] [output path] Generate script for restoring the current snapshot of the plugins
""---Basic configuration---""
-" Enable syntax highlighting.
syntax on
-
-" Show line numbers and use relativenumber.
set number relativenumber
+set clipboard+=unnamedplus
+" set bg=light
+
" Set 1 tab = 4 spaces.
set ts=4 sw=4
diff --git a/.config/udiskie/config.yml b/.config/udiskie/config.yml
index afc483e..23dcfff 100644
--- a/.config/udiskie/config.yml
+++ b/.config/udiskie/config.yml
@@ -44,3 +44,8 @@ icon_names:
detach: [udiskie-detach]
delete: [udiskie-eject]
quit: [application-exit]
+
+device_config:
+ - id_uuid: 681C5DE81C5DB234
+ ignore: false
+ automount: true
diff --git a/.profile b/.profile
index 4a377bd..dd25945 100644
--- a/.profile
+++ b/.profile
@@ -7,8 +7,6 @@ export PATH="$PATH:$(du -L "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/
## Default program.
export EDITOR="nvim"
-export VISUAL="nvim"
-export VISUAL_EDITOR="nvim"
export TERMINAL="alacritty"
export BROWSER="google-chrome-stable"
export READER="zathura"
diff --git a/etc/fstab b/etc/fstab
new file mode 100644
index 0000000..be78963
--- /dev/null
+++ b/etc/fstab
@@ -0,0 +1,29 @@
+#
+# /etc/fstab
+# Static information about the filesystems. See fstab(5) for details.
+# This is a hard copy of my current fstab, no symlink is being used so this is not being updated.
+
+# <file system> <dir> <type> <options> <dump> <pass>
+# /dev/sda7
+UUID=946c902c-7252-46e5-a45f-2504e14b923a / ext4 rw,relatime 0 1
+
+# /dev/sda5
+UUID=091B-9B6F /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 2
+
+# /dev/sda8
+UUID=835a9368-2084-4e28-b514-ec62abca7433 /home ext4 rw,relatime 0 2
+
+# /dev/sda6
+UUID=5192ace9-d0f4-4777-b94c-ccf6ae01e8e0 none swap defaults 0 0
+
+# /dev/sda4 # Windows partition (main)
+UUID=8A9C4E009C4DE773 /media/Windows ntfs defaults 0 2
+
+# /dev/sdb2 # Storage
+UUID=445A1DB95A1DA8A6 /media/Storage ntfs defaults 0 2
+
+# /dev/sdc2 # Storage2
+UUID=22F4424EF442247F /media/Storage2 ntfs defaults 0 2
+
+# /dev/sde2 # Storage3
+UUID=681C5DE81C5DB234 /media/Storage3 ntfs defaults 0 2