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 >
|
bruh " < fuck >
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label text="< > bruh ""/>
|
<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" />
|
<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 ------------------------------------------------------- <<<<<
|
; Treesitter ------------------------------------------------------- <<<<<
|
||||||
(nvim-treesitter-configs.setup
|
(nvim-treesitter-configs.setup
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
require-macros [macros]})
|
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})
|
(utils.keymap :i :<esc> "compe#close('<esc>')" {:expr true})
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,8 @@
|
||||||
:calc true
|
:calc true
|
||||||
:nvim_lsp true
|
:nvim_lsp true
|
||||||
:nvim_lua true
|
:nvim_lua true
|
||||||
:vsnip false}})
|
:vsnip false
|
||||||
|
:conjure true}})
|
||||||
|
|
||||||
; >>>>>
|
; >>>>>
|
||||||
|
|
||||||
|
@ -141,10 +142,16 @@
|
||||||
|
|
||||||
; LSP trouble -------------------------------------------------------------------------------- <<<<<
|
; LSP trouble -------------------------------------------------------------------------------- <<<<<
|
||||||
(trouble.setup
|
(trouble.setup
|
||||||
{:icons false
|
{ :icons false
|
||||||
:auto_preview true
|
:auto_preview true
|
||||||
:auto_close true
|
:auto_close true
|
||||||
:auto_open false})
|
: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})
|
(utils.highlight "LspTroubleFoldIcon" {:bg "NONE" :fg colors.bright_orange})
|
||||||
|
|
|
@ -15,11 +15,15 @@ require("packer").startup(function(use)
|
||||||
|
|
||||||
--use_rocks "rtsisyk/fun"
|
--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 "p00f/nvim-ts-rainbow"
|
||||||
use "romgrk/nvim-treesitter-context"
|
use "romgrk/nvim-treesitter-context"
|
||||||
use 'JoosepAlviste/nvim-ts-context-commentstring'
|
use "JoosepAlviste/nvim-ts-context-commentstring"
|
||||||
use {
|
use {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
run = ":TSUpdate"
|
run = ":TSUpdate"
|
||||||
|
@ -33,7 +37,7 @@ require("packer").startup(function(use)
|
||||||
|
|
||||||
|
|
||||||
-- better quickfix window
|
-- better quickfix window
|
||||||
use "kevinhwang91/nvim-bqf"
|
--use "kevinhwang91/nvim-bqf"
|
||||||
|
|
||||||
-- json query stuff
|
-- json query stuff
|
||||||
use {
|
use {
|
||||||
|
|
Loading…
Reference in a new issue