Flinner 3 years ago
parent 1218798900
commit 4ebe3fdab9
Signed by: flinner
GPG Key ID: 95CE0DA7F0E58CA6
  1. 2
      alacritty/.config/alacritty/alacritty.yml
  2. 1
      bspwm/.config/bspwm/noswallow
  3. 1
      doom/.local/share/applications/.gitignore
  4. 12
      emacs.mine/.config/emacs.mine/emacs.org
  5. 0
      latexmk/.latexmkrc
  6. 10
      nvim/.config/nvim/coc-settings.json
  7. 2
      ranger/.config/ranger/plugins/ranger_devicons/devicons.py
  8. 2
      sxhkd/.config/sxhkd/sxhkdrc
  9. 5
      vim/.vimrc
  10. 7
      zsh/.zshrc

@ -245,7 +245,7 @@ font:
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
#background_opacity: 1.0
background_opacity: 0.90
background_opacity: 0.95
#selection:
# This string contains all characters that are used as separators for "semantic words" in Alacritty.

@ -0,0 +1 @@
Dragon-drag-and-drop

@ -208,9 +208,9 @@ should i really be commiting this? :>
** List my passwords :(
#+begin_src emacs-lisp
(setq my/secret/znc/flinner.my.to/secret (secrets-get-secret "local" "znc/flinner.my.to"))
(setq my/secret/znc/flinner.my.to/username
(cdr (assq :username (secrets-get-attributes "local" "znc/flinner.my.to"))))
;; (setq my/secret/znc/flinner.my.to/secret (secrets-get-secret "local" "znc/flinner.my.to"))
;; (setq my/secret/znc/flinner.my.to/username
;; (cdr (assq :username (secrets-get-attributes "local" "znc/flinner.my.to"))))
#+end_src
* Help
@ -1444,6 +1444,12 @@ Better Diff in header sizes
:hook (c++-mode . lsp))
#+end_src
*** python
#+begin_src emacs-lisp
(add-hook 'python-mode-hook 'lsp)
(add-hook 'python-mode-hook 'prettify-symbols-mode)
#+end_src
* Misc
** Restart Emacs
#+begin_src emacs-lisp

@ -1,10 +0,0 @@
{
"languageserver": {
"vlang": {
"command": "vls",
"rootPatterns": ["v.mod"],
"trace.server": "verbose",
"filetypes": ["vlanga"]
}
}
}

@ -176,7 +176,7 @@ file_node_extensions = {
'swift' : '',
't' : '',
'tar' : '',
'tex' : '',
'tex' : '',
'tgz' : '',
'toml' : '',
'ts' : '',

@ -71,7 +71,7 @@ super + g
#======================== scripts and other =====
#Lockscreen
super + {Pause}
super + {Home}
{~/bin/wm/lockscreen}
#=============================

@ -88,6 +88,7 @@ let g:coc_global_extensions = [
\ 'coc-html',
\ 'coc-css',
\ 'coc-prettier',
\ 'coc-clangd',
\ 'coc-json',
\ 'coc-emoji',
\ ]
@ -103,6 +104,7 @@ set hidden
set nu
set wrap
set smartcase
set ignorecase
set noswapfile
set nobackup
set undodir=~/.vim/undodir
@ -160,7 +162,7 @@ nnoremap <leader>oT :term<CR> " open t
" }}}
"
"Function keys {{{
autocmd filetype tex nnoremap <F5> :LLPStartPreview<CR> "compile
autocmd filetype tex nnoremap <F5> :LLPStartPreview<CR>
nnoremap <F8> :TagbarToggle<CR>
" }}}
@ -240,6 +242,7 @@ set termguicolors " enable true colors support
set background=dark
colorscheme gruvbox
hi Normal guibg=NONE ctermbg=NONE " trasnperant!
highlight SignColumn guibg=NONE
if executable('rg')
let g:rg_derive_root='true'

@ -109,6 +109,11 @@ bindkey '^D' exit_zsh
autoload -Uz url-quote-magic
zle -N self-insert url-quote-magic
#  should kill upto to the slash
autoload -U select-word-style
select-word-style bash
SAVEHIST=1000
HISTSIZE=1000
@ -167,6 +172,8 @@ alias l='ls -CF'
alias sl='ls -CF'
alias ls='ls --color=auto'
alias please='sudo $(fc -ln -1)'
alias p='paru'
alias grep='grep --color=auto'

Loading…
Cancel
Save