3 Commits

  1. 7
      awesome/autorun.sh
  2. 2
      awesome/rc.lua
  3. 4
      init.vim
  4. 1
      vim/ftplugin/rust.vim

7
awesome/autorun.sh

@ -7,7 +7,8 @@ function run {
fi
}
run setxkbmap -option caps:swapescape -layout us -variant altgr-intl
setxkbmap -option caps:swapescape -layout us -variant altgr-intl
run pulseaudio --start
~/.dotfiles/change-wallpaper.sh
/usr/bin/compton --backend glx --paint-on-overlay --vsync opengl-swc
run ~/.dotfiles/change-wallpaper.sh
run /usr/bin/compton --backend glx --paint-on-overlay --vsync opengl-swc
run keepass

2
awesome/rc.lua

@ -594,7 +594,7 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
autorun = true
autorunApps =
{
"keepass",
"/home/schneider/bin/keepass",
"clementine"
}
if autorun then

4
init.vim

@ -62,10 +62,6 @@ Plug 'heavenshell/vim-jsdoc', { 'for': [ 'javascript', 'vue' ]} " Generate JSDoc
Plug 'posva/vim-vue', { 'for': [ 'javascript', 'html', 'vue' ] } " vue.js integration
"}}}
" Go {{{
Plug 'fatih/vim-go', { 'for': [ 'go', 'html', 'gohtmltmpl' ], 'do': ':GoInstallBinaries' } " go support
"}}}
" LaTeX{{{
Plug 'lervag/vimtex', { 'for': 'tex' }
"}}}

1
vim/ftplugin/rust.vim

@ -5,6 +5,7 @@ let g:deoplete#sources#rust#rust_source_path=rust_root . '/lib/rustlib/src/rust/
let g:ale_fixers = {}
let g:ale_fixers['rust'] = ['rustfmt']
let g:ale_fix_on_save=1
let g:ale_rust_rustfmt_options='--edition 2018'
nnoremap <F5> :RustRun<cr>
nnoremap <F6> :RustTest!<cr>

Loading…
Cancel
Save