Compare commits
2 Commits
530aeb2ea2
...
bd3bfa42aa
Author | SHA1 | Date | |
---|---|---|---|
bd3bfa42aa | |||
44c9c07acc |
21
fnl/init.fnl
21
fnl/init.fnl
@ -13,6 +13,27 @@
|
|||||||
(noremap :n :j :gj)
|
(noremap :n :j :gj)
|
||||||
(noremap :n :k :gk)
|
(noremap :n :k :gk)
|
||||||
|
|
||||||
|
(noremap :t :<esc> :<C-\><C-n>)
|
||||||
|
(noremap :t :jj :<esc>)
|
||||||
|
|
||||||
|
(nvim.set_keymap
|
||||||
|
"n"
|
||||||
|
"<leader>s"
|
||||||
|
":mksession!<CR>"
|
||||||
|
{:noremap true :silent true})
|
||||||
|
|
||||||
|
(nvim.set_keymap
|
||||||
|
"n"
|
||||||
|
"[<Space>"
|
||||||
|
":call append(line('.') - 1, repeat([''], v:count1))<CR>"
|
||||||
|
{:noremap true :silent true})
|
||||||
|
|
||||||
|
(nvim.set_keymap
|
||||||
|
"n"
|
||||||
|
"]<Space>"
|
||||||
|
":call append(line('.'), repeat([''], v:count1))<CR>"
|
||||||
|
{:noremap true :silent true})
|
||||||
|
|
||||||
(set nvim.o.tabstop 2)
|
(set nvim.o.tabstop 2)
|
||||||
(set nvim.bo.tabstop 2)
|
(set nvim.bo.tabstop 2)
|
||||||
|
|
||||||
|
@ -4,6 +4,38 @@ packer.startup(function(use)
|
|||||||
use 'wbthomason/packer.nvim'
|
use 'wbthomason/packer.nvim'
|
||||||
use 'Olical/aniseed'
|
use 'Olical/aniseed'
|
||||||
|
|
||||||
|
use {
|
||||||
|
'hoob3rt/lualine.nvim',
|
||||||
|
requires = {'kyazdani42/nvim-web-devicons', opt = true},
|
||||||
|
config = function()
|
||||||
|
require('lualine').setup{
|
||||||
|
options = {
|
||||||
|
theme = 'nord',
|
||||||
|
section_separators = {'', ''},
|
||||||
|
component_separators = {'', ''},
|
||||||
|
icons_enabled = true,
|
||||||
|
},
|
||||||
|
sections = {
|
||||||
|
lualine_a = { {'mode', upper = true} },
|
||||||
|
lualine_b = { {'branch', icon = ''} },
|
||||||
|
lualine_c = { {'filename', file_status = true} },
|
||||||
|
lualine_x = { 'encoding', 'fileformat', 'filetype' },
|
||||||
|
lualine_y = { 'progress' },
|
||||||
|
lualine_z = { 'location' },
|
||||||
|
},
|
||||||
|
inactive_sections = {
|
||||||
|
lualine_a = { },
|
||||||
|
lualine_b = { },
|
||||||
|
lualine_c = { 'filename' },
|
||||||
|
lualine_x = { 'location' },
|
||||||
|
lualine_y = { },
|
||||||
|
lualine_z = { }
|
||||||
|
},
|
||||||
|
extensions = { 'fugitive' }
|
||||||
|
}
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
use 'Yggdroot/indentLine'
|
use 'Yggdroot/indentLine'
|
||||||
use 'ntpeters/vim-better-whitespace'
|
use 'ntpeters/vim-better-whitespace'
|
||||||
use 'valloric/matchtagalways'
|
use 'valloric/matchtagalways'
|
||||||
|
Loading…
Reference in New Issue
Block a user