This commit is contained in:
Flinner 2021-10-12 07:37:08 +03:00
parent 1218798900
commit 4ebe3fdab9
Signed by: flinner
GPG Key ID: 95CE0DA7F0E58CA6
10 changed files with 25 additions and 17 deletions

View File

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

View File

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

View File

@ -0,0 +1 @@
*.desktop

View File

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

0
latexmk/.latexmkrc Normal file
View File

View File

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

View File

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

View File

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

View File

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

View File

@ -109,6 +109,11 @@ bindkey '^D' exit_zsh
autoload -Uz url-quote-magic autoload -Uz url-quote-magic
zle -N self-insert 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 SAVEHIST=1000
HISTSIZE=1000 HISTSIZE=1000
@ -167,6 +172,8 @@ alias l='ls -CF'
alias sl='ls -CF' alias sl='ls -CF'
alias ls='ls --color=auto' alias ls='ls --color=auto'
alias please='sudo $(fc -ln -1)'
alias p='paru' alias p='paru'
alias grep='grep --color=auto' alias grep='grep --color=auto'