Compare commits
3 commits
a84395e4d4
...
469c02ad73
Author | SHA1 | Date | |
---|---|---|---|
469c02ad73 | |||
0c1feb7b06 | |||
c59424585d |
4 changed files with 13 additions and 11 deletions
|
@ -26,8 +26,8 @@ starship init fish | source
|
|||
|
||||
# >>> conda initialize >>>
|
||||
# !! Contents within this block are managed by 'conda init' !!
|
||||
if test -f /home/tsousa/miniconda3/bin/conda
|
||||
eval /home/tsousa/miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
||||
if test -f /home/tsousa/.miniconda3/bin/conda
|
||||
eval /home/tsousa/.miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
||||
end
|
||||
# <<< conda initialize <<<
|
||||
conda deactivate
|
||||
|
|
|
@ -38,17 +38,17 @@ exec --no-startup-id nm-applet
|
|||
|
||||
# Use pactl to adjust volume in PulseAudio.
|
||||
#set $refresh_i3status killall -SIGUSR1 i3status
|
||||
bindsym XF86AudioRaiseVolume exec --no-startup-id pamixer -i 5 && $refresh_i3status
|
||||
bindsym XF86AudioLowerVolume exec --no-startup-id pamixer -d 5 && $refresh_i3status
|
||||
bindsym XF86AudioMute exec --no-startup-id pamixer set --toggle-mute && $refresh_i3status
|
||||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
||||
bindsym XF86AudioRaiseVolume exec --no-startup-id pamixer -i 5
|
||||
bindsym XF86AudioLowerVolume exec --no-startup-id pamixer -d 5
|
||||
bindsym XF86AudioMute exec --no-startup-id pamixer set --toggle-mute
|
||||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
||||
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
||||
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
||||
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
|
||||
|
||||
# Use lux to adjust brightness
|
||||
bindsym XF86MonBrightnessUp exec --no-startup-id lux -a 10% && $refresh_i3status
|
||||
bindsym XF86MonBrightnessDown exec --no-startup-id lux -s 10% -m 1 && $refresh_i3status
|
||||
bindsym XF86MonBrightnessUp exec --no-startup-id lux -a 10%
|
||||
bindsym XF86MonBrightnessDown exec --no-startup-id lux -s 10% -m 1
|
||||
|
||||
# Screen capture program
|
||||
bindsym Print exec --no-startup-id flameshot gui
|
||||
|
|
|
@ -16,6 +16,6 @@ require('nvim-treesitter.configs').setup {
|
|||
}
|
||||
|
||||
require('orgmode').setup({
|
||||
org_agenda_files = { '~/Nextcloud/org/*', '~/my-orgs/**/*' },
|
||||
org_default_notes_file = '~/Nextcloud/org/refile.org',
|
||||
org_agenda_files = { '~/Nextcloud/Documents/uni/**/*'},
|
||||
org_default_notes_file = '~/Nextcloud/Documents/uni/refile.org',
|
||||
})
|
||||
|
|
|
@ -23,7 +23,6 @@ return require('packer').startup(function(use)
|
|||
|
||||
use("norcalli/nvim-colorizer.lua")
|
||||
|
||||
use("nvim-orgmode/orgmode")
|
||||
use("lervag/vimtex")
|
||||
|
||||
use({
|
||||
|
@ -52,6 +51,9 @@ return require('packer').startup(function(use)
|
|||
use("nvim-treesitter/nvim-treesitter", {
|
||||
run = ":TSUpdate"
|
||||
})
|
||||
|
||||
|
||||
use("nvim-orgmode/orgmode")
|
||||
use('nvim-lualine/lualine.nvim')
|
||||
|
||||
use("nvim-treesitter/playground")
|
||||
|
|
Loading…
Reference in a new issue