mirror of https://github.com/Flinner/dots.git
This commit is contained in:
parent
1218798900
commit
4ebe3fdab9
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
*.desktop
|
|
@ -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…
Reference in New Issue