This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin("~/.config/nvim/plugged") | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'wakatime/vim-wakatime' | |
Plug 'andweeb/presence.nvim' | |
Plug 'artanikin/vim-synthwave84' | |
Plug 'scrooloose/nerdtree' | |
Plug 'Xuyuanp/nerdtree-git-plugin' | |
Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
Plug 'christoomey/vim-tmux-navigator' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function main() { | |
// Load the sheet that contains the birthdays. | |
var sheet = SpreadsheetApp.getActive().getSheetByName("sheet1"); | |
// Get the last row in the sheet that has data. | |
var numRows = sheet.getLastRow(); | |
// Load data in the first two columns from the second row till the last row. | |
// Remember: The first row has column headers so we don’t want to load it. | |
var range = sheet.getRange(2, 1, numRows - 1, 2).getValues(); |