diff options
Diffstat (limited to 'Common')
-rw-r--r-- | Common/bashrc.m4 | 2 | ||||
-rw-r--r-- | Common/helix/config.toml | 15 | ||||
-rw-r--r-- | Common/nvim/lua/lsp-conf.lua | 2 |
3 files changed, 18 insertions, 1 deletions
diff --git a/Common/bashrc.m4 b/Common/bashrc.m4 index 54e287b..524bf83 100644 --- a/Common/bashrc.m4 +++ b/Common/bashrc.m4 @@ -144,4 +144,6 @@ source "$SSH_DIR/ssh-agent.env" > /dev/null # Enable FZF history [ -f ~/.fzf.bash ] && source ~/.fzf.bash +m4_ifelse(DT_DISTRO, `fedora', m4_dnl source /usr/share/fzf/shell/key-bindings.bash +)m4_dnl diff --git a/Common/helix/config.toml b/Common/helix/config.toml new file mode 100644 index 0000000..ea5006f --- /dev/null +++ b/Common/helix/config.toml @@ -0,0 +1,15 @@ +theme = "everforest_light" + +[editor] +mouse = true +gutters = ["diff"] +auto-completion = true +auto-format = false + +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "underline" + +[editor.file-picker] +hidden = false diff --git a/Common/nvim/lua/lsp-conf.lua b/Common/nvim/lua/lsp-conf.lua index 83daed3..7709c83 100644 --- a/Common/nvim/lua/lsp-conf.lua +++ b/Common/nvim/lua/lsp-conf.lua @@ -40,7 +40,7 @@ vim.diagnostic.config({ virtual_text = false, signs = true, update_in_insert = true, - underline = true, + underline = false, severity_sort = false, float = { border = 'rounded', |