mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
asdf
This commit is contained in:
parent
1a7be45469
commit
bb8ed61cdc
6 changed files with 46 additions and 13 deletions
10
fnl/init.fnl
10
fnl/init.fnl
|
@ -3,11 +3,13 @@
|
|||
fennel aniseed.fennel
|
||||
nvim aniseed.nvim
|
||||
kb keybinds
|
||||
utils utils
|
||||
gl plugins.galaxyline
|
||||
lsp plugins.lsp}
|
||||
utils utils}
|
||||
require-macros [macros]})
|
||||
|
||||
(require "plugins.telescope")
|
||||
(require "plugins.lsp")
|
||||
(require "plugins.galaxyline")
|
||||
|
||||
|
||||
(global pp
|
||||
(fn [x]
|
||||
|
@ -49,3 +51,5 @@
|
|||
:warning_visible visible
|
||||
:separator visible
|
||||
:indicator_selected {:guibg colors.neutral_aqua :guifg colors.neutral_aqua}}}))
|
||||
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
(utils.noremap :v :<leader> ":<c-u>WhichKeyVisual '<Space>'<CR>")
|
||||
|
||||
(utils.mapexpr :i :<C-Space> "compe#complete()")
|
||||
(utils.mapexpr :i :<CR> "compe#confirm(lexima#expand('<LT>CR>', 'i'))")
|
||||
;(utils.mapexpr :i :<CR> "compe#confirm(lexima#expand('<LT>CR>', 'i'))")
|
||||
(utils.mapexpr :i :<esc> "compe#close('<esc>')")
|
||||
|
||||
(fn le [s] (.. ":call luaeval(\"" s "\")"))
|
||||
|
@ -23,6 +23,8 @@
|
|||
"l" [ ":bnext" "next buffer"]
|
||||
"f" "which_key_ignore"
|
||||
"s" "which_key_ignore"
|
||||
"o" [":Telescope live_grep" "Grep files"]
|
||||
"p" [":Telescope file_browser" "Open file-browser"]
|
||||
"[" ["<Plug>(YoinkPostPasteSwapBack)" "Swap last paste backwards"]
|
||||
"]" ["<Plug>(YoinkPostPasteSwapForward)" "Swap last paste backwards"]
|
||||
":" [":Commands" "Search command with fzf"]
|
||||
|
@ -49,6 +51,7 @@
|
|||
"g" [ (le "vim.lsp.buf.definition()") "go to definition"]
|
||||
"i" [ (le "vim.lsp.buf.implementation()") "show implementation"]
|
||||
"r" [ (le "vim.lsp.buf.references()") "show references"]
|
||||
;"r" [ ":Telescope lsp_references" "show references"]
|
||||
"f" [ (le "vim.lsp.buf.formatting()") "format file"]}
|
||||
|
||||
|
||||
|
|
|
@ -26,17 +26,16 @@
|
|||
false))))
|
||||
|
||||
|
||||
(lsp.rust_analyzer.setup { :on_attach on_attach })
|
||||
(lsp.rust_analyzer.setup { :on_attach on_attach})
|
||||
(lsp.jsonls.setup { :on_attach on_attach })
|
||||
(lsp.vimls.setup { :on_attach on_attach })
|
||||
(lsp.tsserver.setup { :on_attach on_attach })
|
||||
(lsp.tsserver.setup { :on_attach on_attach :root_dir (lsp.util.root_pattern "package.json")})
|
||||
(lsp.bashls.setup { :on_attach on_attach })
|
||||
(lsp.html.setup { :on_attach on_attach})
|
||||
|
||||
(lsp.denols.setup { :on_attach on_attach
|
||||
:root_dir (lsp.util.root_pattern ".git") })
|
||||
(lsp.hls.setup { :on_attach on_attach }
|
||||
:settings { :languageServerHaskell { :formattingProvider "stylish-haskell" }})
|
||||
:root_dir (lsp.util.root_pattern ".git")})
|
||||
(lsp.hls.setup { :on_attach on_attach
|
||||
:settings { :languageServerHaskell { :formattingProvider "stylish-haskell"}}})
|
||||
|
||||
(compe.setup
|
||||
{ :enabled true
|
||||
|
@ -76,5 +75,6 @@
|
|||
(utils.highlight "LspSagaCodeActionContent" {:fg "#8ec07c"})
|
||||
(utils.highlight "LspSagaFinderSelection" {:fg "#8ec07c"})
|
||||
(utils.highlight "LspSagaDiagnosticHeader" {:fg "#8ec07c"})
|
||||
(utils.highlight "TargetWord" {:fg "#8ec07c"})
|
||||
|
||||
(set nvim.o.signcolumn "yes")
|
||||
|
|
17
fnl/plugins/telescope.fnl
Normal file
17
fnl/plugins/telescope.fnl
Normal file
|
@ -0,0 +1,17 @@
|
|||
(module plugins.telescope
|
||||
{require {a aniseed.core
|
||||
fennel aniseed.fennel
|
||||
nvim aniseed.nvim
|
||||
utils utils
|
||||
|
||||
telescope telescope
|
||||
actions telescope.actions}})
|
||||
|
||||
|
||||
|
||||
(telescope.setup
|
||||
{:defaults
|
||||
{:i { "<esc>" actions.close}}})
|
||||
|
||||
|
||||
|
11
init.vim
11
init.vim
|
@ -121,6 +121,11 @@ augroup basics
|
|||
|
||||
" file type assignments
|
||||
autocmd BufRead,BufNewFile *.ddl setlocal filetype=sql
|
||||
|
||||
|
||||
" Auto-close quickfix list after entry is selected
|
||||
autocmd FileType qf nnoremap <buffer> <CR> <CR>:cclose<CR>
|
||||
|
||||
augroup END
|
||||
|
||||
|
||||
|
@ -345,10 +350,12 @@ nnoremap ö a
|
|||
" }}}
|
||||
|
||||
|
||||
" how 2 highlight group at cursor
|
||||
":exe 'hi '.synIDattr(synID(line("."), col("."), 0),"name")
|
||||
|
||||
"source $VIM_ROOT/whichkeyConfig.vim
|
||||
|
||||
let g:aniseed#env = v:true
|
||||
|
||||
let g:lexima_no_default_rules = v:true
|
||||
call lexima#set_default_rules()
|
||||
"let g:lexima_no_default_rules = v:true
|
||||
"call lexima#set_default_rules()
|
||||
|
|
|
@ -7,6 +7,8 @@ endif
|
|||
|
||||
call plug#begin('~/.vim/plugged')
|
||||
|
||||
Plug 'kevinhwang91/nvim-bqf'
|
||||
|
||||
Plug 'akinsho/nvim-bufferline.lua'
|
||||
|
||||
Plug 'Olical/aniseed', { 'tag': 'v3.16.0' }
|
||||
|
@ -102,7 +104,7 @@ call plug#begin('~/.vim/plugged')
|
|||
Plug 'neovim/nvim-lspconfig'
|
||||
Plug 'hrsh7th/nvim-compe'
|
||||
Plug 'glepnir/lspsaga.nvim'
|
||||
Plug 'cohama/lexima.vim'
|
||||
"Plug 'cohama/lexima.vim'
|
||||
|
||||
Plug 'nvim-lua/popup.nvim'
|
||||
Plug 'nvim-lua/plenary.nvim'
|
||||
|
|
Loading…
Reference in a new issue