mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
epic updates
This commit is contained in:
parent
8a70637173
commit
444fa36714
5 changed files with 27 additions and 12 deletions
|
@ -23,6 +23,10 @@
|
|||
|
||||
bruh " < fuck >
|
||||
"
|
||||
|
||||
|
||||
|
||||
|
||||
<label text="< > bruh ""/>
|
||||
|
||||
|
||||
|
@ -38,8 +42,8 @@
|
|||
|
||||
|
||||
|
||||
{{EWW_CORES}} {{EWW_RAM}} {{EWW_DISK}} {{EWW_BATTERY}} {{EWW_CPU]}} {{EWW_NET_UP}} {{EWW_NET_DOWN}}
|
||||
|
||||
{{EWW_RAM}} {{EWW_DISK}} {{EWW_BATTERY}} {{EWW_CPU]}} {{EWW_NET_UP}} {{EWW_NET_DOWN}}
|
||||
{{EWW_CORES}}
|
||||
|
||||
<scale value="50" orientation="v" min="0" max="100" flipped="true" />
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
|
||||
|
||||
;(set nvim.g.conjure#client#fennel#aniseed#aniseed_module_prefix "aniseed.")
|
||||
(set vim.g.conjure#client#fennel#aniseed#aniseed_module_prefix "aniseed.")
|
||||
|
||||
; Treesitter ------------------------------------------------------- <<<<<
|
||||
(nvim-treesitter-configs.setup
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
require-macros [macros]})
|
||||
|
||||
|
||||
(utils.keymap :i :<C-Space> "call compe#complete()" {:expr true})
|
||||
(utils.keymap :i :<C-Space> "compe#complete()" {:expr true})
|
||||
(utils.keymap :i :<esc> "compe#close('<esc>')" {:expr true})
|
||||
|
||||
|
||||
|
|
|
@ -92,7 +92,8 @@
|
|||
:calc true
|
||||
:nvim_lsp true
|
||||
:nvim_lua true
|
||||
:vsnip false}})
|
||||
:vsnip false
|
||||
:conjure true}})
|
||||
|
||||
; >>>>>
|
||||
|
||||
|
@ -141,10 +142,16 @@
|
|||
|
||||
; LSP trouble -------------------------------------------------------------------------------- <<<<<
|
||||
(trouble.setup
|
||||
{:icons false
|
||||
:auto_preview true
|
||||
:auto_close true
|
||||
:auto_open false})
|
||||
{ :icons false
|
||||
:auto_preview true
|
||||
:auto_close true
|
||||
:auto_open false
|
||||
:action_keys
|
||||
{ :jump "o"
|
||||
:jump_close "<CR>"
|
||||
:close "<esc>"
|
||||
:cancel "q"
|
||||
:hover ["a" "K"]}})
|
||||
|
||||
|
||||
(utils.highlight "LspTroubleFoldIcon" {:bg "NONE" :fg colors.bright_orange})
|
||||
|
|
|
@ -15,11 +15,15 @@ require("packer").startup(function(use)
|
|||
|
||||
--use_rocks "rtsisyk/fun"
|
||||
|
||||
use 'pwntester/octo.nvim'
|
||||
use "tami5/compe-conjure"
|
||||
|
||||
use "pwntester/octo.nvim"
|
||||
|
||||
use "Olical/conjure"
|
||||
|
||||
use "p00f/nvim-ts-rainbow"
|
||||
use "romgrk/nvim-treesitter-context"
|
||||
use 'JoosepAlviste/nvim-ts-context-commentstring'
|
||||
use "JoosepAlviste/nvim-ts-context-commentstring"
|
||||
use {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
run = ":TSUpdate"
|
||||
|
@ -33,7 +37,7 @@ require("packer").startup(function(use)
|
|||
|
||||
|
||||
-- better quickfix window
|
||||
use "kevinhwang91/nvim-bqf"
|
||||
--use "kevinhwang91/nvim-bqf"
|
||||
|
||||
-- json query stuff
|
||||
use {
|
||||
|
|
Loading…
Reference in a new issue