gls is aliased to regular ls

This commit is contained in:
Christoph J. Scherr 2023-06-09 14:05:42 +02:00
parent 4fd838cdb4
commit 2952ad74e1
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
3 changed files with 12 additions and 0 deletions

View File

@ -130,6 +130,10 @@ inoremap <expr> <S-Tab> coc#pum#visible() ? coc#pum#prev(1) : "\<S-Tab>"
"CocInstall coc-lists coc-lua coc-pyright coc-rust-analyzer coc-sh coc-snippets coc-sql
""""these may cause errors"""""CocInstall coc-symbol-line coc-toml coc-texlab coc-vimlsp coc-xml
" slime (sends stuff to other programs, like ipython)
let g:slime_target = "neovim"
"------------------------------------------------------
lua << END
require('alpha').setup(require('alpha.themes.startify').config)
@ -199,3 +203,9 @@ dimensions = {
-- floaterm keys
vim.keymap.set('n', '<F12>', '<CMD>lua require("FTerm").toggle()<CR>')
vim.keymap.set('t', '<F12>', '<C-\\><C-n><CMD>lua require("FTerm").toggle()<CR>')
-- slime
-- get id of a terminal, FloatTerm is usually 7, but I should rice this more
vim.g.slime_get_jobid = function()
return 7
end

View File

@ -17,6 +17,7 @@ alias egrep="grep -E"
alias lgrep="find | grep"
alias psgrep="ps axu | grep"
alias isotime='date +"%Y-%m-%dT%H:%M:%S%z"'
alias gls=/bin/ls
### Functions
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }

View File

@ -27,6 +27,7 @@ alias plasmarestart="killall plasmashell; kstart5 plasmashell"
alias isotime='date +"%Y-%m-%dT%H:%M:%S%z"'
alias gg=lazygit
alias reload="source ~/.zshrc"
alias gls=/bin/ls
### Functions
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }