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`.
|
# 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.
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Dragon-drag-and-drop
|
|
@ -0,0 +1 @@
|
||||||
|
*.desktop
|
|
@ -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
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"languageserver": {
|
|
||||||
"vlang": {
|
|
||||||
"command": "vls",
|
|
||||||
"rootPatterns": ["v.mod"],
|
|
||||||
"trace.server": "verbose",
|
|
||||||
"filetypes": ["vlanga"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -176,7 +176,7 @@ file_node_extensions = {
|
||||||
'swift' : '',
|
'swift' : '',
|
||||||
't' : '',
|
't' : '',
|
||||||
'tar' : '',
|
'tar' : '',
|
||||||
'tex' : 'ﭨ',
|
'tex' : '',
|
||||||
'tgz' : '',
|
'tgz' : '',
|
||||||
'toml' : '',
|
'toml' : '',
|
||||||
'ts' : '',
|
'ts' : '',
|
||||||
|
|
|
@ -71,7 +71,7 @@ super + g
|
||||||
|
|
||||||
#======================== scripts and other =====
|
#======================== scripts and other =====
|
||||||
#Lockscreen
|
#Lockscreen
|
||||||
super + {Pause}
|
super + {Home}
|
||||||
{~/bin/wm/lockscreen}
|
{~/bin/wm/lockscreen}
|
||||||
|
|
||||||
#=============================
|
#=============================
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue