Enable an lA alias to show . and .. directories #6
|
@ -97,7 +97,6 @@ end
|
|||
if has_command rg
|
||||
function rgl; rg --color always $argv | less -r; end
|
||||
alias rg "rg --text"
|
||||
alias grep "rg"
|
||||
alias gr "rg"
|
||||
end
|
||||
|
||||
|
|
|
@ -92,3 +92,6 @@
|
|||
# pushOption = merge_request.create
|
||||
# pushOption = merge_request.remove_source_branch
|
||||
# pushOption = merge_request.assign="daniel.flanagan"
|
||||
|
||||
[url "git@git-p1ap1.divvy.co:"]
|
||||
insteadOf = https://git-p1ap1.divvy.co
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
# Beware! This file is rewritten by htop when settings are changed in the interface.
|
||||
# The parser is also very primitive, and not human-friendly.
|
||||
htop_version=3.1.2
|
||||
config_reader_min_version=2
|
||||
htop_version=3.2.0
|
||||
config_reader_min_version=3
|
||||
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
||||
sort_key=46
|
||||
sort_direction=-1
|
||||
tree_sort_key=0
|
||||
tree_sort_direction=1
|
||||
hide_kernel_threads=1
|
||||
hide_userland_threads=1
|
||||
shadow_other_users=0
|
||||
|
@ -21,10 +17,8 @@ highlight_changes_delay_secs=5
|
|||
find_comm_in_cmdline=1
|
||||
strip_exe_from_cmdline=1
|
||||
show_merged_command=0
|
||||
tree_view=1
|
||||
tree_view_always_by_pid=0
|
||||
all_branches_collapsed=0
|
||||
header_margin=1
|
||||
screen_tabs=0
|
||||
detailed_cpu_time=0
|
||||
cpu_count_from_one=1
|
||||
show_cpu_usage=1
|
||||
|
@ -42,3 +36,26 @@ column_meters_0=LeftCPUs2 Memory Swap
|
|||
column_meter_modes_0=1 1 1
|
||||
column_meters_1=RightCPUs2 Tasks LoadAverage Uptime
|
||||
column_meter_modes_1=1 2 2 2
|
||||
tree_view=0
|
||||
sort_key=46
|
||||
tree_sort_key=0
|
||||
sort_direction=-1
|
||||
tree_sort_direction=1
|
||||
tree_view_always_by_pid=0
|
||||
all_branches_collapsed=0
|
||||
screen:Main=PID USER PRIORITY NICE M_VIRT M_RESIDENT M_SHARE STATE PERCENT_CPU PERCENT_MEM TIME Command
|
||||
.sort_key=PERCENT_CPU
|
||||
.tree_sort_key=PID
|
||||
.tree_view=0
|
||||
.tree_view_always_by_pid=0
|
||||
.sort_direction=-1
|
||||
.tree_sort_direction=1
|
||||
.all_branches_collapsed=0
|
||||
screen:I/O=PID USER IO_PRIORITY IO_RATE IO_READ_RATE IO_WRITE_RATE PERCENT_SWAP_DELAY PERCENT_IO_DELAY Command
|
||||
.sort_key=IO_RATE
|
||||
.tree_sort_key=PID
|
||||
.tree_view=0
|
||||
.tree_view_always_by_pid=0
|
||||
.sort_direction=-1
|
||||
.tree_sort_direction=1
|
||||
.all_branches_collapsed=0
|
||||
|
|
|
@ -32,7 +32,7 @@ packer.startup(function()
|
|||
-- session management
|
||||
'olimorris/persisted.nvim',
|
||||
config = function()
|
||||
local should_autoload = #vim.v.argv >= 1
|
||||
local should_autoload = #vim.v.argv == 1
|
||||
require 'persisted'.setup {
|
||||
autoload = should_autoload,
|
||||
autosave = should_autoload,
|
||||
|
@ -74,7 +74,6 @@ packer.startup(function()
|
|||
local cmp = require 'cmp'
|
||||
local luasnip = require 'luasnip'
|
||||
|
||||
--[[
|
||||
local prev_item = function(fallback)
|
||||
if cmp.visible() then
|
||||
cmp.select_prev_item()
|
||||
|
@ -96,7 +95,6 @@ packer.startup(function()
|
|||
fallback()
|
||||
end
|
||||
end
|
||||
]] --
|
||||
|
||||
cmp.setup {
|
||||
snippet = {
|
||||
|
@ -118,8 +116,8 @@ packer.startup(function()
|
|||
['<CR>'] = cmp.mapping.confirm { select = false },
|
||||
-- ["<Tab>"] = cmp.mapping(next_item, { "i", "s" }),
|
||||
-- ["<S-Tab>"] = cmp.mapping(prev_item, { "i", "s" }),
|
||||
-- ['<C-n>'] = cmp.mapping(next_item, { "i", "s" }),
|
||||
-- ['<C-p>'] = cmp.mapping(prev_item, { "i", "s" }),
|
||||
['<C-n>'] = cmp.mapping(next_item, { "i", "s" }),
|
||||
['<C-p>'] = cmp.mapping(prev_item, { "i", "s" }),
|
||||
},
|
||||
sources = cmp.config.sources({
|
||||
{ name = 'nvim_lsp' },
|
||||
|
|
|
@ -188,7 +188,7 @@ exec_always 'killall kanshi; kanshi'
|
|||
# prevents all windows from stealing focus
|
||||
no_focus [class=".*"]
|
||||
|
||||
output * bg $HOME/.wallpaper fill
|
||||
output * background $HOME/.wallpaper fill
|
||||
|
||||
include /etc/sway/config.d/*
|
||||
include $XDG_CONFIG_HOME/lytedev-env/*/sway/config
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"layer": "top",
|
||||
"position": "bottom",
|
||||
"output": ["eDP-1", "DP-3"],
|
||||
"output": ["eDP-1", "DP-1"],
|
||||
"height": 32,
|
||||
"modules-left": ["clock"],
|
||||
"modules-center": ["sway/workspaces"],
|
||||
|
|
Reference in a new issue